GoogleCloudKmsInventoryV1ListCryptoKeysResponse.fromJson constructor

GoogleCloudKmsInventoryV1ListCryptoKeysResponse.fromJson(
  1. Map json_
)

Implementation

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