ForumTopic constructor
ForumTopic({
- ForumTopicInfo? info,
- Message? lastMessage,
- required int order,
- required bool isPinned,
- required int unreadCount,
- required int lastReadInboxMessageId,
- required int lastReadOutboxMessageId,
- required int unreadMentionCount,
- required int unreadReactionCount,
- required int unreadPollVoteCount,
- ChatNotificationSettings? notificationSettings,
- 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,
});