copyWith method
Implementation
WebApiModulesInventoryInventorySearchInventorySearchSaveNoteRequest copyWith({
String? sessionId,
String? quikSearchId,
String? note,
String? warehouseId,
String? inventoryId,
int? quantity,
bool? printableNote,
}) {
return WebApiModulesInventoryInventorySearchInventorySearchSaveNoteRequest(
sessionId: sessionId ?? this.sessionId,
quikSearchId: quikSearchId ?? this.quikSearchId,
note: note ?? this.note,
warehouseId: warehouseId ?? this.warehouseId,
inventoryId: inventoryId ?? this.inventoryId,
quantity: quantity ?? this.quantity,
printableNote: printableNote ?? this.printableNote,
);
}