copyWith method
WebApiModulesHomeControlsInventoryAttributeValueInventoryAttributeValue
copyWith({
- String? inventoryAttributeValueId,
- String? attributeId,
- String? inventoryId,
- String? attribute,
- String? attributeValueId,
- String? attributeValue,
- double? numericValue,
- bool? numericOnly,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsInventoryAttributeValueInventoryAttributeValue
copyWith(
{String? inventoryAttributeValueId,
String? attributeId,
String? inventoryId,
String? attribute,
String? attributeValueId,
String? attributeValue,
double? numericValue,
bool? numericOnly,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsInventoryAttributeValueInventoryAttributeValue(
inventoryAttributeValueId:
inventoryAttributeValueId ?? this.inventoryAttributeValueId,
attributeId: attributeId ?? this.attributeId,
inventoryId: inventoryId ?? this.inventoryId,
attribute: attribute ?? this.attribute,
attributeValueId: attributeValueId ?? this.attributeValueId,
attributeValue: attributeValue ?? this.attributeValue,
numericValue: numericValue ?? this.numericValue,
numericOnly: numericOnly ?? this.numericOnly,
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);
}