Skip to content

Commit

Permalink
fix: Remove fcm token from translator class
Browse files Browse the repository at this point in the history
  • Loading branch information
xsorifc28 committed Mar 15, 2023
1 parent 70a2e0b commit 753ab53
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions lib/app/models/translator.dart
Expand Up @@ -83,18 +83,3 @@ class Contact with _$Contact {
(twitter?.isNotEmpty == true) ||
(whatsapp?.isNotEmpty == true);
}

@freezed
class FcmToken with _$FcmToken {
const factory FcmToken({required String token, int? timestamp}) = _FcmToken;

const FcmToken._();

factory FcmToken.fromJson(Map<String, Object?> json) =>
_$FcmTokenFromJson(json);

@override
String toString() {
return "fcmToken: $token timestamp: $timestamp";
}
}

0 comments on commit 753ab53

Please sign in to comment.