copyWithWrapped method

WebApiModulesHomeControlsInventoryCompleteKitInventoryCompleteKit copyWithWrapped({
  1. Wrapped<String?>? inventoryId,
  2. Wrapped<String?>? packageId,
  3. Wrapped<String?>? iCode,
  4. Wrapped<String?>? iCodeColor,
  5. Wrapped<String?>? description,
  6. Wrapped<String?>? descriptionColor,
  7. Wrapped<String?>? itemClass,
  8. Wrapped<String?>? inventoryTypeId,
  9. Wrapped<String?>? inventoryType,
  10. Wrapped<String?>? categoryId,
  11. Wrapped<String?>? category,
  12. Wrapped<String?>? subCategoryId,
  13. Wrapped<String?>? subCategory,
  14. Wrapped<String?>? warehouseId,
  15. Wrapped<String?>? warehouse,
  16. Wrapped<String?>? auditNote,
  17. Wrapped<String?>? recordTitle,
  18. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  19. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  20. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  21. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesHomeControlsInventoryCompleteKitInventoryCompleteKit
    copyWithWrapped(
        {Wrapped<String?>? inventoryId,
        Wrapped<String?>? packageId,
        Wrapped<String?>? iCode,
        Wrapped<String?>? iCodeColor,
        Wrapped<String?>? description,
        Wrapped<String?>? descriptionColor,
        Wrapped<String?>? itemClass,
        Wrapped<String?>? inventoryTypeId,
        Wrapped<String?>? inventoryType,
        Wrapped<String?>? categoryId,
        Wrapped<String?>? category,
        Wrapped<String?>? subCategoryId,
        Wrapped<String?>? subCategory,
        Wrapped<String?>? warehouseId,
        Wrapped<String?>? warehouse,
        Wrapped<String?>? auditNote,
        Wrapped<String?>? recordTitle,
        Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
            fields,
        Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
        Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
            defaultFieldAttributes,
        Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesHomeControlsInventoryCompleteKitInventoryCompleteKit(
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      packageId: (packageId != null ? packageId.value : this.packageId),
      iCode: (iCode != null ? iCode.value : this.iCode),
      iCodeColor: (iCodeColor != null ? iCodeColor.value : this.iCodeColor),
      description:
          (description != null ? description.value : this.description),
      descriptionColor: (descriptionColor != null
          ? descriptionColor.value
          : this.descriptionColor),
      itemClass: (itemClass != null ? itemClass.value : this.itemClass),
      inventoryTypeId: (inventoryTypeId != null
          ? inventoryTypeId.value
          : this.inventoryTypeId),
      inventoryType:
          (inventoryType != null ? inventoryType.value : this.inventoryType),
      categoryId: (categoryId != null ? categoryId.value : this.categoryId),
      category: (category != null ? category.value : this.category),
      subCategoryId:
          (subCategoryId != null ? subCategoryId.value : this.subCategoryId),
      subCategory:
          (subCategory != null ? subCategory.value : this.subCategory),
      warehouseId:
          (warehouseId != null ? warehouseId.value : this.warehouseId),
      warehouse: (warehouse != null ? warehouse.value : this.warehouse),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes),
      translation:
          (translation != null ? translation.value : this.translation));
}