KmsWrappedCryptoKey.fromJson constructor

KmsWrappedCryptoKey.fromJson(
  1. 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,
      );