PassphraseInfo.fromJson constructor

PassphraseInfo.fromJson(
  1. Map<String, Object?> json
)

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');