add structure

This commit is contained in:
2020-05-29 07:45:27 +06:30
parent 4c851d9971
commit bad27ba5c4
272 changed files with 36065 additions and 174 deletions

13
lib/vo/status.dart Normal file
View File

@@ -0,0 +1,13 @@
class Status {
String status;
String message;
String errorCode;
Status(this.status, this.message);
Status.fromJson(Map<String, dynamic> json) {
status = json['status'];
message = json['message'];
errorCode = json['error_code'];
}
}