GoogleCloudRunV2GCSVolumeSource.fromJson constructor

GoogleCloudRunV2GCSVolumeSource.fromJson(
  1. 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,
      );