VolumeMount.fromJson constructor

VolumeMount.fromJson(
  1. Map json_
)

Implementation

VolumeMount.fromJson(core.Map json_)
  : this(
      mountPath: json_['mountPath'] as core.String?,
      name: json_['name'] as core.String?,
      readOnly: json_['readOnly'] as core.bool?,
      subPath: json_['subPath'] as core.String?,
    );