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. dynamic urlIdentifier,
  11. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  12. List<FwStandardDataFwCustomValue>? custom,
  13. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  14. FwStandardBusinessLogicFwBusinessLogic? original,
  15. List<FwStandardDataFwTranslatedValue>? translation,
  16. bool? hasImport,
  17. String? createdByUserId,
  18. String? createdByUserName,
  19. String? createdDateTime,
  20. String? modifiedByUserId,
  21. String? modifiedByUserName,
  22. String? modifiedDateTime,
})

Implementation

WebApiModulesSettingsUserSettingsSoundSound copyWith({
  String? soundId,
  String? sound,
  String? base64Sound,
  String? fileName,
  bool? systemSound,
  String? soundColor,
  String? dateStamp,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}