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