TF-390 Apply new ui for suggestion box for email address

This commit is contained in:
dab246
2022-03-24 13:07:48 +07:00
committed by Dat H. Pham
parent 5ca2f2a572
commit fdf1e45d66
14 changed files with 108 additions and 72 deletions
@@ -6,14 +6,16 @@ class AutoCompletePattern with EquatableMixin {
final String? word;
final int? limit;
final String? orderBy;
final bool? isAll;
AutoCompletePattern({
this.word,
this.limit,
this.orderBy
this.orderBy,
this.isAll,
});
@override
List<Object?> get props => [word, limit, orderBy];
List<Object?> get props => [word, limit, orderBy, isAll];
}