f5d878012d
Signed-off-by: dab246 <tdvu@linagora.com> (cherry picked from commit fb26afe8f52df6e16476aea8a68f9f92c5c4b001)
13 lines
250 B
Dart
13 lines
250 B
Dart
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:jmap_dart_client/jmap/core/id.dart';
|
|
|
|
class FirebaseRegistrationId with EquatableMixin {
|
|
|
|
final Id id;
|
|
|
|
FirebaseRegistrationId(this.id);
|
|
|
|
@override
|
|
List<Object?> get props => [id];
|
|
} |