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