TF-390 Apply new ui for suggestion box for email address
This commit is contained in:
@@ -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];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user