finalizada a tela service_individual_screen.dart,

ajustada service_home_screen.dart
This commit is contained in:
Reginaldo
2023-03-28 19:48:23 -03:00
parent 407755e0ac
commit d7adeee9af
11 changed files with 1200 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
class CheckModel{
String subtitle;
bool check;
CheckModel({
required this.subtitle,
required this.check
});
}