copyWith method
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,
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);
}