copyWith method

WebApiModulesUtilitiesLabelDesignBarcodeLabel copyWith({
  1. String? barcode,
  2. String? icode,
  3. String? description,
  4. String? inventorytype,
  5. String? category,
  6. String? subcategory,
})

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