copyWith method

WebApiModulesUtilitiesLabelDesignBarcodeLabel copyWith({
  1. String? barcode,
  2. String? icode,
  3. String? description,
  4. String? inventorytype,
  5. String? category,
  6. String? subcategory,
  7. String? trackedby,
  8. String? manufacturer,
  9. String? manufacturerpartnumber,
})

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,
  );
}