copyWith method
WebApiModulesUtilitiesInventoryMergeInventoryMerge
copyWith({
- int? inventoryMergeId,
- String? sessionId,
- String? fromInventoryId,
- String? fromICode,
- String? fromDescription,
- String? toInventoryId,
- String? toICode,
- String? toDescription,
- String? warehouseId,
- String? warehouse,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesUtilitiesInventoryMergeInventoryMerge copyWith(
{int? inventoryMergeId,
String? sessionId,
String? fromInventoryId,
String? fromICode,
String? fromDescription,
String? toInventoryId,
String? toICode,
String? toDescription,
String? warehouseId,
String? warehouse,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesUtilitiesInventoryMergeInventoryMerge(
inventoryMergeId: inventoryMergeId ?? this.inventoryMergeId,
sessionId: sessionId ?? this.sessionId,
fromInventoryId: fromInventoryId ?? this.fromInventoryId,
fromICode: fromICode ?? this.fromICode,
fromDescription: fromDescription ?? this.fromDescription,
toInventoryId: toInventoryId ?? this.toInventoryId,
toICode: toICode ?? this.toICode,
toDescription: toDescription ?? this.toDescription,
warehouseId: warehouseId ?? this.warehouseId,
warehouse: warehouse ?? this.warehouse,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}