copyWith method

WebApiModulesSettingsUserSettingsSoundSound copyWith({
  1. String? soundId,
  2. String? sound,
  3. String? base64Sound,
  4. String? fileName,
  5. bool? systemSound,
  6. String? soundColor,
  7. String? dateStamp,
  8. String? auditNote,
  9. String? recordTitle,
  10. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  11. List<FwStandardDataFwCustomValue>? custom,
  12. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  13. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesSettingsUserSettingsSoundSound copyWith(
    {String? soundId,
    String? sound,
    String? base64Sound,
    String? fileName,
    bool? systemSound,
    String? soundColor,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesSettingsUserSettingsSoundSound(
      soundId: soundId ?? this.soundId,
      sound: sound ?? this.sound,
      base64Sound: base64Sound ?? this.base64Sound,
      fileName: fileName ?? this.fileName,
      systemSound: systemSound ?? this.systemSound,
      soundColor: soundColor ?? this.soundColor,
      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);
}