TF-524 Create RecentSearchCache and TypeAHeadQuickSearch widget

This commit is contained in:
dab246
2022-05-23 18:48:29 +07:00
committed by Dat H. Pham
parent 5ca238153a
commit 3513c363ff
23 changed files with 2349 additions and 127 deletions
@@ -0,0 +1,12 @@
import 'package:equatable/equatable.dart';
class RecentSearch with EquatableMixin {
final String value;
final DateTime creationDate;
RecentSearch(this.value, this.creationDate);
@override
List<Object?> get props => [value, creationDate];
}