copyWith method
Implementation
WebApiModulesUtilitiesLabelDesignBarcodeLabel copyWith({
String? barcode,
String? icode,
String? description,
String? inventorytype,
String? category,
String? subcategory,
String? trackedby,
String? manufacturer,
String? manufacturerpartnumber,
}) {
return WebApiModulesUtilitiesLabelDesignBarcodeLabel(
barcode: barcode ?? this.barcode,
icode: icode ?? this.icode,
description: description ?? this.description,
inventorytype: inventorytype ?? this.inventorytype,
category: category ?? this.category,
subcategory: subcategory ?? this.subcategory,
trackedby: trackedby ?? this.trackedby,
manufacturer: manufacturer ?? this.manufacturer,
manufacturerpartnumber:
manufacturerpartnumber ?? this.manufacturerpartnumber,
);
}