GoogleCloudRunV2SourceCode.fromJson constructor

GoogleCloudRunV2SourceCode.fromJson(
  1. Map json_
)

Implementation

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