TF-1202: Configure FCM

This commit is contained in:
ManhNTX
2022-11-17 13:07:26 +07:00
committed by Dat H. Pham
parent 8276f5b041
commit f94cfe7ee8
34 changed files with 718 additions and 25 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:equatable/equatable.dart';
class FirebaseDto with EquatableMixin {
final String token;
FirebaseDto(this.token);
@override
List<Object?> get props => [token];
}