correção visita_domiciliar_tela.dart, register_citizen_screen.dart e register_individual_screen.dart

This commit is contained in:
Reginaldo
2024-03-18 22:16:02 -03:00
parent f5abac7a70
commit 58fcb66022
19 changed files with 903 additions and 487 deletions

View File

@@ -6,5 +6,17 @@ class DropDownDataStringModel{
required this.cod,
required this.title
});
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is DropDownDataStringModel &&
runtimeType == other.runtimeType &&
cod == other.cod &&
title == other.title;
@override
int get hashCode => cod.hashCode ^ title.hashCode;
}