PassphraseInfo.fromJson constructor
Implementation
PassphraseInfo.fromJson(Map<String, Object?> json)
: algorithm = json.tryGet('algorithm', TryGet.required),
salt = json.tryGet('salt', TryGet.required),
iterations = json.tryGet('iterations', TryGet.required),
bits = json.tryGet('bits');