ForumTopic constructor
ForumTopic({
- String? extra,
- int? client_id,
- ForumTopicInfo? info,
- Message? last_message,
- Bool? is_pinned,
- int32? unread_count,
- int53? last_read_inbox_message_id,
- int53? last_read_outbox_message_id,
- int32? unread_mention_count,
- int32? unread_reaction_count,
- ChatNotificationSettings? notification_settings,
- DraftMessage? draft_message,
Implementation
ForumTopic({
super.extra,
super.client_id,
this.info,
this.last_message,
this.is_pinned,
this.unread_count,
this.last_read_inbox_message_id,
this.last_read_outbox_message_id,
this.unread_mention_count,
this.unread_reaction_count,
this.notification_settings,
this.draft_message,
});