copyWithWrapped method

WebApiModulesWarehouseCheckInQuikInItem copyWithWrapped({
  1. Wrapped<String?>? barcode,
  2. Wrapped<String?>? iCode,
  3. Wrapped<String?>? description,
  4. Wrapped<String?>? inventoryId,
  5. Wrapped<String?>? assetId,
  6. Wrapped<String?>? itemClass,
  7. Wrapped<String?>? packageId,
  8. Wrapped<String?>? packageItemId,
  9. Wrapped<String?>? orderBy,
  10. Wrapped<String?>? vendorId,
  11. Wrapped<String?>? nestedMasterItemId,
  12. Wrapped<int?>? quantity,
  13. Wrapped<int?>? quikInItemId,
  14. Wrapped<String?>? internalChar,
  15. Wrapped<int?>? status,
  16. Wrapped<String?>? message,
})

Implementation

WebApiModulesWarehouseCheckInQuikInItem copyWithWrapped({
  Wrapped<String?>? barcode,
  Wrapped<String?>? iCode,
  Wrapped<String?>? description,
  Wrapped<String?>? inventoryId,
  Wrapped<String?>? assetId,
  Wrapped<String?>? itemClass,
  Wrapped<String?>? packageId,
  Wrapped<String?>? packageItemId,
  Wrapped<String?>? orderBy,
  Wrapped<String?>? vendorId,
  Wrapped<String?>? nestedMasterItemId,
  Wrapped<int?>? quantity,
  Wrapped<int?>? quikInItemId,
  Wrapped<String?>? internalChar,
  Wrapped<int?>? status,
  Wrapped<String?>? message,
}) {
  return WebApiModulesWarehouseCheckInQuikInItem(
    barcode: (barcode != null ? barcode.value : this.barcode),
    iCode: (iCode != null ? iCode.value : this.iCode),
    description: (description != null ? description.value : this.description),
    inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
    assetId: (assetId != null ? assetId.value : this.assetId),
    itemClass: (itemClass != null ? itemClass.value : this.itemClass),
    packageId: (packageId != null ? packageId.value : this.packageId),
    packageItemId: (packageItemId != null
        ? packageItemId.value
        : this.packageItemId),
    orderBy: (orderBy != null ? orderBy.value : this.orderBy),
    vendorId: (vendorId != null ? vendorId.value : this.vendorId),
    nestedMasterItemId: (nestedMasterItemId != null
        ? nestedMasterItemId.value
        : this.nestedMasterItemId),
    quantity: (quantity != null ? quantity.value : this.quantity),
    quikInItemId: (quikInItemId != null
        ? quikInItemId.value
        : this.quikInItemId),
    internalChar: (internalChar != null
        ? internalChar.value
        : this.internalChar),
    status: (status != null ? status.value : this.status),
    message: (message != null ? message.value : this.message),
  );
}