UpdateChatNotificationSettings constructor

const UpdateChatNotificationSettings({
  1. required int chatId,
  2. required ChatNotificationSettings notificationSettings,
  3. dynamic extra,
  4. int? clientId,
})

Notification settings for a chat were changed

Implementation

const UpdateChatNotificationSettings({
  required this.chatId,
  required this.notificationSettings,
  this.extra,
  this.clientId,
});