step 7 : login, logout (bug disconnect), home screen top info user login

This commit is contained in:
sindhu
2024-01-25 14:17:50 +07:00
parent aa22053180
commit b772e74e17
16 changed files with 731 additions and 73 deletions

View File

@@ -0,0 +1,18 @@
class LogoutResponseModel {
String? status;
String? message;
LogoutResponseModel({this.status, this.message});
LogoutResponseModel.fromJson(Map<String, dynamic> json) {
status = json['status'];
message = json['message'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['status'] = this.status;
data['message'] = this.message;
return data;
}
}