step 31 : total history, change password, resize image from camera, update versi 1.2.0

This commit is contained in:
sindhu
2024-01-22 10:25:31 +07:00
parent c67f771d25
commit 4e3d251169
15 changed files with 864 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
class HistoryTotalModel {
String? totalAll;
HistoryTotalModel({
this.totalAll,
});
HistoryTotalModel.fromJson(Map<String, dynamic> json) {
totalAll = json['total_all'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['total_all'] = this.totalAll;
return data;
}
}