copyWith method
Implementation
VolumeStorageMountSpec copyWith({String? name, String? path, String? subpath, bool? readOnly}) {
return VolumeStorageMountSpec(
name: name ?? this.name,
path: path ?? this.path,
subpath: subpath ?? this.subpath,
readOnly: readOnly ?? this.readOnly,
);
}