copyWith method

WebApiModulesSettingsAttributeValueAttributeValue copyWith({
  1. String? attributeValueId,
  2. String? attributeValue,
  3. String? attributeId,
  4. String? attribute,
  5. String? inventoryTypeId,
  6. String? inventoryType,
  7. bool? numericOnly,
  8. bool? inactive,
  9. String? dateStamp,
  10. String? auditNote,
  11. String? recordTitle,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. 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);
}