ForumTopic constructor

ForumTopic({
  1. String? extra,
  2. int? client_id,
  3. ForumTopicInfo? info,
  4. Message? last_message,
  5. Bool? is_pinned,
  6. int32? unread_count,
  7. int53? last_read_inbox_message_id,
  8. int53? last_read_outbox_message_id,
  9. int32? unread_mention_count,
  10. int32? unread_reaction_count,
  11. ChatNotificationSettings? notification_settings,
  12. 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,
});