UpdateForumTopic constructor

UpdateForumTopic({
  1. required int chatId,
  2. required int forumTopicId,
  3. required bool isPinned,
  4. required int lastReadInboxMessageId,
  5. required int lastReadOutboxMessageId,
  6. required int unreadMentionCount,
  7. required int unreadReactionCount,
  8. required int unreadPollVoteCount,
  9. ChatNotificationSettings? notificationSettings,
  10. DraftMessage? draftMessage,
})

Implementation

UpdateForumTopic({
  required this.chatId,
  required this.forumTopicId,
  required this.isPinned,
  required this.lastReadInboxMessageId,
  required this.lastReadOutboxMessageId,
  required this.unreadMentionCount,
  required this.unreadReactionCount,
  required this.unreadPollVoteCount,
  this.notificationSettings,
  this.draftMessage,
});