copyWith method

WebApiModulesInventoryInventoryReceiptItemBarcodeEnableResponse copyWith({
  1. bool? assignBarcodes,
  2. bool? addItems,
  3. bool? print,
})

Implementation

WebApiModulesInventoryInventoryReceiptItemBarcodeEnableResponse copyWith(
    {bool? assignBarcodes, bool? addItems, bool? print}) {
  return WebApiModulesInventoryInventoryReceiptItemBarcodeEnableResponse(
      assignBarcodes: assignBarcodes ?? this.assignBarcodes,
      addItems: addItems ?? this.addItems,
      print: print ?? this.print);
}