TF-524 Clean up recent search cache

This commit is contained in:
dab246
2022-05-24 13:24:00 +07:00
committed by Dat H. Pham
parent 11c9a8713a
commit 81eca6c59a
20 changed files with 203 additions and 53 deletions
@@ -1,13 +1,12 @@
import 'package:equatable/equatable.dart';
class CleanupRule with EquatableMixin {
final Duration cachingEmailPeriod;
abstract class CleanupRule with EquatableMixin {
CleanupRule(this.cachingEmailPeriod);
CleanupRule();
@override
List<Object?> get props => [cachingEmailPeriod];
List<Object?> get props => [];
}
class Duration with EquatableMixin {