InputPeerNotifySettings constructor

const InputPeerNotifySettings({
  1. required bool showPreviews,
  2. required bool silent,
  3. DateTime? muteUntil,
  4. NotificationSoundBase? sound,
  5. required bool storiesMuted,
  6. required bool storiesHideSender,
  7. NotificationSoundBase? storiesSound,
})

Input Peer Notify Settings constructor.

Implementation

const InputPeerNotifySettings({
  required this.showPreviews,
  required this.silent,
  this.muteUntil,
  this.sound,
  required this.storiesMuted,
  required this.storiesHideSender,
  this.storiesSound,
}) : super._();