TF-1204 Add firebase object and capability
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class FirebaseToken with EquatableMixin {
|
||||
|
||||
final String value;
|
||||
|
||||
FirebaseToken(this.value);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [value];
|
||||
}
|
||||
Reference in New Issue
Block a user