GoogleCloudRunV2GCSVolumeSource.fromJson constructor
GoogleCloudRunV2GCSVolumeSource.fromJson(
- Map json_
Implementation
GoogleCloudRunV2GCSVolumeSource.fromJson(core.Map json_)
: this(
bucket: json_['bucket'] as core.String?,
mountOptions: (json_['mountOptions'] as core.List?)
?.map((value) => value as core.String)
.toList(),
readOnly: json_['readOnly'] as core.bool?,
);