Update APIType in request model

This commit is contained in:
Ashita Prasad
2024-12-10 05:09:39 +05:30
parent a6791f1165
commit 46df82185d
3 changed files with 31 additions and 1 deletions

View File

@ -12,6 +12,7 @@ class RequestModel with _$RequestModel {
)
const factory RequestModel({
required String id,
@Default(APIType.rest) APIType apiType,
@Default("") String name,
@Default("") String description,
@JsonKey(includeToJson: false) @Default(0) requestTabIndex,