GoogleCloudKmsInventoryV1ListCryptoKeysResponse.fromJson constructor

GoogleCloudKmsInventoryV1ListCryptoKeysResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudKmsInventoryV1ListCryptoKeysResponse.fromJson(core.Map json_)
    : this(
        cryptoKeys: json_.containsKey('cryptoKeys')
            ? (json_['cryptoKeys'] as core.List)
                .map((value) => GoogleCloudKmsV1CryptoKey.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );