ScopeNotificationSettings constructor

const ScopeNotificationSettings({
  1. required int muteFor,
  2. required String sound,
  3. required bool showPreview,
  4. required bool disablePinnedMessageNotifications,
  5. required bool disableMentionNotifications,
  6. dynamic extra,
  7. int? clientId,
})

Contains information about notification settings for several chats

Implementation

const ScopeNotificationSettings({
  required this.muteFor,
  required this.sound,
  required this.showPreview,
  required this.disablePinnedMessageNotifications,
  required this.disableMentionNotifications,
  this.extra,
  this.clientId,
});