ForumTopic constructor

ForumTopic({
  1. ForumTopicInfo? info,
  2. Message? lastMessage,
  3. required int order,
  4. required bool isPinned,
  5. required int unreadCount,
  6. required int lastReadInboxMessageId,
  7. required int lastReadOutboxMessageId,
  8. required int unreadMentionCount,
  9. required int unreadReactionCount,
  10. required int unreadPollVoteCount,
  11. ChatNotificationSettings? notificationSettings,
  12. DraftMessage? draftMessage,
})

Implementation

ForumTopic({
  this.info,
  this.lastMessage,
  required this.order,
  required this.isPinned,
  required this.unreadCount,
  required this.lastReadInboxMessageId,
  required this.lastReadOutboxMessageId,
  required this.unreadMentionCount,
  required this.unreadReactionCount,
  required this.unreadPollVoteCount,
  this.notificationSettings,
  this.draftMessage,
});