ScopeNotificationSettings constructor

const ScopeNotificationSettings({
  1. required int muteFor,
  2. required int soundId,
  3. required bool showPreview,
  4. required bool useDefaultMuteStories,
  5. required bool muteStories,
  6. required int storySoundId,
  7. required bool showStorySender,
  8. required bool disablePinnedMessageNotifications,
  9. required bool disableMentionNotifications,
  10. dynamic extra,
  11. int? clientId,
})

Contains information about notification settings for several chats

Implementation

const ScopeNotificationSettings({
  required this.muteFor,
  required this.soundId,
  required this.showPreview,
  required this.useDefaultMuteStories,
  required this.muteStories,
  required this.storySoundId,
  required this.showStorySender,
  required this.disablePinnedMessageNotifications,
  required this.disableMentionNotifications,
  this.extra,
  this.clientId,
});