Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/consts.dart
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,9 @@ const kRaiseIssue =
"\nPlease raise an issue in API Dash GitHub repo so that we can resolve it.";

const kHintTextUrlCard = "Enter API endpoint like https://$kDefaultUri/";
const kHintTextWsCard = "Enter WebSocket endpoint like wss://echo.websocket.org";
const kHintTextMqttCard = "Enter MQTT broker URL like mqtt://broker.emqx.io";
const kHintTextGrpcCard = "Enter gRPC host like localhost:50051";
const kLabelPlusNew = "+ New";
const kLabelMoreOptions = "More Options";
const kLabelSend = "Send";
Expand Down
2 changes: 1 addition & 1 deletion lib/models/history_meta_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ part 'history_meta_model.freezed.dart';
part 'history_meta_model.g.dart';

@freezed
class HistoryMetaModel with _$HistoryMetaModel {
abstract class HistoryMetaModel with _$HistoryMetaModel {
const factory HistoryMetaModel({
required String historyId,
required String requestId,
Expand Down
Loading