Supergroup constructor

Supergroup({
  1. String? extra,
  2. int? client_id,
  3. int53? id,
  4. Usernames? usernames,
  5. int32? date,
  6. ChatMemberStatus? status,
  7. int32? member_count,
  8. Bool? has_linked_chat,
  9. Bool? has_location,
  10. Bool? sign_messages,
  11. Bool? join_to_send_messages,
  12. Bool? join_by_request,
  13. Bool? is_slow_mode_enabled,
  14. Bool? is_channel,
  15. Bool? is_broadcast_group,
  16. Bool? is_forum,
  17. Bool? is_verified,
  18. string? restriction_reason,
  19. Bool? is_scam,
  20. Bool? is_fake,
})

Implementation

Supergroup({
  super.extra,
  super.client_id,
  this.id,
  this.usernames,
  this.date,
  this.status,
  this.member_count,
  this.has_linked_chat,
  this.has_location,
  this.sign_messages,
  this.join_to_send_messages,
  this.join_by_request,
  this.is_slow_mode_enabled,
  this.is_channel,
  this.is_broadcast_group,
  this.is_forum,
  this.is_verified,
  this.restriction_reason,
  this.is_scam,
  this.is_fake,
});