TF-524 Create RecentSearchCache and TypeAHeadQuickSearch widget
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user