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