copyWith method

WebApiModulesInventoryInventorySearchInventorySearchSaveNoteRequest copyWith({
  1. String? sessionId,
  2. String? quikSearchId,
  3. String? note,
  4. String? warehouseId,
  5. String? inventoryId,
  6. int? quantity,
  7. bool? printableNote,
})

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,
  );
}