Files
workavia-mail-front/lib/features/caching/fcm_cache_client.dart
T
dab246 550752a2a4 Store and get fcm cache by AccountId
(cherry picked from commit e327dff45a4fc67d0c5a2d2afe64fc4673e2eac1)
2023-05-08 13:03:51 +07:00

9 lines
288 B
Dart

import 'package:tmail_ui_user/features/caching/config/hive_cache_client.dart';
import 'package:tmail_ui_user/features/caching/utils/caching_constants.dart';
class FcmCacheClient extends HiveCacheClient<String> {
@override
String get tableName => CachingConstants.fcmCacheBoxName;
}