Files
fcs/lib/domain/vo/status.dart

13 lines
260 B
Dart
Raw Normal View History

2020-05-29 07:45:27 +06:30
class Status {
2021-09-10 14:27:38 +06:30
String? status;
String? message;
String? errorCode;
2020-05-29 07:45:27 +06:30
Status(this.status, this.message);
Status.fromJson(Map<String, dynamic> json) {
status = json['status'];
message = json['message'];
errorCode = json['error_code'];
}
2021-09-10 14:27:38 +06:30
}