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