TF-1205: rename class

This commit is contained in:
ManhNTX
2022-11-22 13:56:41 +07:00
committed by Dat H. Pham
parent 036ebbeb2f
commit d2da7f23b1
47 changed files with 352 additions and 390 deletions
+17
View File
@@ -0,0 +1,17 @@
import 'package:equatable/equatable.dart';
class FCMTokenDto with EquatableMixin {
final String token;
final String accountId;
FCMTokenDto(
this.token,
this.accountId,
);
@override
List<Object?> get props => [
token,
accountId,
];
}
-10
View File
@@ -1,10 +0,0 @@
import 'package:equatable/equatable.dart';
class FirebaseDto with EquatableMixin {
final String token;
FirebaseDto(this.token);
@override
List<Object?> get props => [token];
}