SecretStorageKeyContent.fromJson constructor
Implementation
SecretStorageKeyContent.fromJson(Map<String, Object?> json)
: passphrase = ((Map<String, Object?>? x) => x != null
? PassphraseInfo.fromJson(x)
: null)(json.tryGet('passphrase')),
iv = json.tryGet('iv'),
mac = json.tryGet('mac'),
algorithm = json.tryGet('algorithm');