KmsWrappedCryptoKey.fromJson constructor
KmsWrappedCryptoKey.fromJson(
- Map json_
Implementation
KmsWrappedCryptoKey.fromJson(core.Map json_)
: this(
cryptoKey: json_.containsKey('cryptoKey')
? json_['cryptoKey'] as core.String
: null,
wrappedKey: json_.containsKey('wrappedKey')
? json_['wrappedKey'] as core.String
: null,
);