UpdateSavedNotificationSounds constructor

const UpdateSavedNotificationSounds({
  1. required List<int> notificationSoundIds,
  2. dynamic extra,
  3. int? clientId,
})

The list of saved notifications sounds was updated. This update may not be sent until information about a notification sound was requested for the first time

Implementation

const UpdateSavedNotificationSounds({
  required this.notificationSoundIds,
  this.extra,
  this.clientId,
});