TF-439 Delete all class not used

This commit is contained in:
dab246
2022-11-30 12:34:27 +07:00
committed by Dat H. Pham
parent 81278d13ba
commit d990426c8e
22 changed files with 2 additions and 302 deletions
@@ -1,11 +0,0 @@
import 'package:model/fcm/fcm_token_dto.dart';
import 'package:tmail_ui_user/features/push_notification/data/model/fcm_token_cache.dart';
extension FCMCacheExtension on FCMTokenCache {
FCMTokenDto toFCMDto() {
return FCMTokenDto(
token,
accountId,
);
}
}
@@ -1,11 +0,0 @@
import 'package:model/fcm/fcm_token_dto.dart';
import 'package:tmail_ui_user/features/push_notification/data/model/fcm_token_cache.dart';
extension FCMExtensions on FCMTokenDto {
FCMTokenCache toCache() {
return FCMTokenCache(
token,
accountId,
);
}
}