GoogleCloudRunV2ListWorkerPoolsResponse.fromJson constructor

GoogleCloudRunV2ListWorkerPoolsResponse.fromJson(
  1. Map json_
)

Implementation

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