VolumeStorageMountSpec.fromJson constructor
Implementation
factory VolumeStorageMountSpec.fromJson(Map<String, dynamic> json) {
return VolumeStorageMountSpec(
name: json['name'] as String,
path: json['path'] as String,
subpath: json['subpath'] as String?,
readOnly: json['read_only'] as bool? ?? false,
);
}