ForumTopicInfo constructor

ForumTopicInfo({
  1. String? extra,
  2. int? client_id,
  3. int53? message_thread_id,
  4. string? name,
  5. ForumTopicIcon? icon,
  6. int32? creation_date,
  7. MessageSender? creator_id,
  8. Bool? is_general,
  9. Bool? is_outgoing,
  10. Bool? is_closed,
  11. Bool? is_hidden,
})

Implementation

ForumTopicInfo({
  super.extra,
  super.client_id,
  this.message_thread_id,
  this.name,
  this.icon,
  this.creation_date,
  this.creator_id,
  this.is_general,
  this.is_outgoing,
  this.is_closed,
  this.is_hidden,
});