GoogleCloudRunV2GCSVolumeSource.fromJson constructor
GoogleCloudRunV2GCSVolumeSource.fromJson(
- Map json_
Implementation
GoogleCloudRunV2GCSVolumeSource.fromJson(core.Map json_)
: this(
bucket: json_.containsKey('bucket')
? json_['bucket'] as core.String
: null,
readOnly: json_.containsKey('readOnly')
? json_['readOnly'] as core.bool
: null,
);