mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
31 lines
1.2 KiB
Dart
31 lines
1.2 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'local_account.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$LocalAccountImpl _$$LocalAccountImplFromJson(Map<String, dynamic> json) =>
|
|
_$LocalAccountImpl(
|
|
superIdentity: SuperIdentity.fromJson(json['super_identity']),
|
|
identitySecretBytes: const Uint8ListJsonConverter()
|
|
.fromJson(json['identity_secret_bytes']),
|
|
encryptionKeyType:
|
|
EncryptionKeyType.fromJson(json['encryption_key_type']),
|
|
biometricsEnabled: json['biometrics_enabled'] as bool,
|
|
hiddenAccount: json['hidden_account'] as bool,
|
|
name: json['name'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$$LocalAccountImplToJson(_$LocalAccountImpl instance) =>
|
|
<String, dynamic>{
|
|
'super_identity': instance.superIdentity.toJson(),
|
|
'identity_secret_bytes':
|
|
const Uint8ListJsonConverter().toJson(instance.identitySecretBytes),
|
|
'encryption_key_type': instance.encryptionKeyType.toJson(),
|
|
'biometrics_enabled': instance.biometricsEnabled,
|
|
'hidden_account': instance.hiddenAccount,
|
|
'name': instance.name,
|
|
};
|