mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 23:28:39 +00:00
21 lines
800 B
Dart
21 lines
800 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'signal_identity.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SignalIdentity _$SignalIdentityFromJson(Map<String, dynamic> json) =>
|
|
SignalIdentity(
|
|
identityKeyPairU8List: const Uint8ListConverter()
|
|
.fromJson(json['identityKeyPairU8List'] as String),
|
|
registrationId: (json['registrationId'] as num).toInt(),
|
|
);
|
|
|
|
Map<String, dynamic> _$SignalIdentityToJson(SignalIdentity instance) =>
|
|
<String, dynamic>{
|
|
'registrationId': instance.registrationId,
|
|
'identityKeyPairU8List':
|
|
const Uint8ListConverter().toJson(instance.identityKeyPairU8List),
|
|
};
|