TF-1202: Configure FCM
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user