copyWithWrapped method
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< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
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));
}