copyWith method
WebApiModulesUtilitiesLabelDesignBarcodeLabel
copyWith(
{ - String? barcode,
- String? icode,
- String? serialno,
- String? description,
- String? inventorytype,
- String? category,
- String? subcategory,
- String? trackedby,
- String? manufacturer,
- String? manufacturerpartnumber,
})
Implementation
WebApiModulesUtilitiesLabelDesignBarcodeLabel copyWith({
String? barcode,
String? icode,
String? serialno,
String? description,
String? inventorytype,
String? category,
String? subcategory,
String? trackedby,
String? manufacturer,
String? manufacturerpartnumber,
}) {
return WebApiModulesUtilitiesLabelDesignBarcodeLabel(
barcode: barcode ?? this.barcode,
icode: icode ?? this.icode,
serialno: serialno ?? this.serialno,
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,
);
}