Offline Support

This commit is contained in:
2026-04-27 06:20:39 +08:00
parent 7d8851a94a
commit 48cd3bcd60
121 changed files with 14798 additions and 2214 deletions
+1 -10
View File
@@ -1,10 +1 @@
class Service {
Service({required this.id, required this.name});
final String id;
final String name;
factory Service.fromMap(Map<String, dynamic> map) {
return Service(id: map['id'] as String, name: map['name'] as String? ?? '');
}
}
export 'service.model.dart';