KmsWrappedCryptoKey.fromJson constructor

KmsWrappedCryptoKey.fromJson(
  1. Map json_
)

Implementation

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