GoogleCloudApigeeV1ListApiProductsResponse.fromJson constructor

GoogleCloudApigeeV1ListApiProductsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListApiProductsResponse.fromJson(core.Map json_)
    : this(
        apiProduct: json_.containsKey('apiProduct')
            ? (json_['apiProduct'] as core.List)
                .map((value) => GoogleCloudApigeeV1ApiProduct.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );