GoogleCloudRunV2ListExecutionsResponse.fromJson constructor

GoogleCloudRunV2ListExecutionsResponse.fromJson(
  1. Map json_
)

Implementation

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