GoogleCloudRunV2UploadSourceResponse.fromJson constructor

GoogleCloudRunV2UploadSourceResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRunV2UploadSourceResponse.fromJson(core.Map json_)
  : this(
      cloudStorageSource: json_.containsKey('cloudStorageSource')
          ? GoogleCloudRunV2CloudStorageSource.fromJson(
              json_['cloudStorageSource']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );