TF-48 Implement autocomplete email address

This commit is contained in:
dab246
2021-09-08 15:16:51 +07:00
committed by Dat H. Pham
parent c46329774b
commit 60e46bb253
8 changed files with 138 additions and 0 deletions
@@ -0,0 +1,19 @@
import 'package:equatable/equatable.dart';
class AutoCompletePattern with EquatableMixin {
final String? word;
final int? limit;
final String? orderBy;
AutoCompletePattern({
this.word,
this.limit,
this.orderBy
});
@override
List<Object?> get props => [word, limit, orderBy];
}