GoogleCloudRunV2NFSVolumeSource.fromJson constructor

GoogleCloudRunV2NFSVolumeSource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRunV2NFSVolumeSource.fromJson(core.Map json_)
    : this(
        path: json_['path'] as core.String?,
        readOnly: json_['readOnly'] as core.bool?,
        server: json_['server'] as core.String?,
      );