$CryptoKeyVersionTemplate.fromJson constructor

$CryptoKeyVersionTemplate.fromJson(
  1. Map json_
)

Implementation

$CryptoKeyVersionTemplate.fromJson(core.Map json_)
    : this(
        algorithm: json_.containsKey('algorithm')
            ? json_['algorithm'] as core.String
            : null,
        protectionLevel: json_.containsKey('protectionLevel')
            ? json_['protectionLevel'] as core.String
            : null,
      );