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