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