copyWith method
WebApiModulesUtilitiesLabelDesignLabelDesign
copyWith({
- String? labelId,
- String? warehouseId,
- String? warehouse,
- String? format,
- String? category,
- String? description,
- String? labelData,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesUtilitiesLabelDesignLabelDesign copyWith(
{String? labelId,
String? warehouseId,
String? warehouse,
String? format,
String? category,
String? description,
String? labelData,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesUtilitiesLabelDesignLabelDesign(
labelId: labelId ?? this.labelId,
warehouseId: warehouseId ?? this.warehouseId,
warehouse: warehouse ?? this.warehouse,
format: format ?? this.format,
category: category ?? this.category,
description: description ?? this.description,
labelData: labelData ?? this.labelData,
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);
}