copyWithWrapped method
WebApiModulesSettingsUserSettingsSoundSound
copyWithWrapped({
- Wrapped<
String?> ? soundId, - Wrapped<
String?> ? sound, - Wrapped<
String?> ? base64Sound, - Wrapped<
String?> ? fileName, - Wrapped<
bool?> ? systemSound, - Wrapped<
String?> ? soundColor, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesSettingsUserSettingsSoundSound copyWithWrapped(
{Wrapped<String?>? soundId,
Wrapped<String?>? sound,
Wrapped<String?>? base64Sound,
Wrapped<String?>? fileName,
Wrapped<bool?>? systemSound,
Wrapped<String?>? soundColor,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesSettingsUserSettingsSoundSound(
soundId: (soundId != null ? soundId.value : this.soundId),
sound: (sound != null ? sound.value : this.sound),
base64Sound:
(base64Sound != null ? base64Sound.value : this.base64Sound),
fileName: (fileName != null ? fileName.value : this.fileName),
systemSound:
(systemSound != null ? systemSound.value : this.systemSound),
soundColor: (soundColor != null ? soundColor.value : this.soundColor),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle:
(recordTitle != null ? recordTitle.value : this.recordTitle),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
translation:
(translation != null ? translation.value : this.translation));
}