copyWith method
Implementation
WebApiModulesUtilitiesLabelDesignBarcodeLabel copyWith(
{String? barcode,
String? icode,
String? description,
String? inventorytype,
String? category,
String? subcategory}) {
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);
}