UpdateChatDefaultDisableNotification constructor

const UpdateChatDefaultDisableNotification({
  1. required int chatId,
  2. required bool defaultDisableNotification,
  3. dynamic extra,
  4. int? clientId,
})

The value of the default disable_notification parameter, used when a message is sent to the chat, was changed

Implementation

const UpdateChatDefaultDisableNotification({
  required this.chatId,
  required this.defaultDisableNotification,
  this.extra,
  this.clientId,
});