This commit is contained in:
Christien Rioux 2023-10-14 20:18:57 -04:00
parent d2a7fdbe4d
commit 8ac551a5e0

View File

@ -10,7 +10,7 @@ _$LocalAccountImpl _$$LocalAccountImplFromJson(Map<String, dynamic> json) =>
_$LocalAccountImpl(
identityMaster: IdentityMaster.fromJson(json['identity_master']),
identitySecretBytes: const Uint8ListJsonConverter()
.fromJson(json['identity_secret_bytes'] as String),
.fromJson(json['identity_secret_bytes']),
encryptionKeyType:
EncryptionKeyType.fromJson(json['encryption_key_type']),
biometricsEnabled: json['biometrics_enabled'] as bool,