ChatPermissions constructor

ChatPermissions({
  1. String? extra,
  2. int? client_id,
  3. Bool? can_send_messages,
  4. Bool? can_send_media_messages,
  5. Bool? can_send_polls,
  6. Bool? can_send_other_messages,
  7. Bool? can_add_web_page_previews,
  8. Bool? can_change_info,
  9. Bool? can_invite_users,
  10. Bool? can_pin_messages,
  11. Bool? can_manage_topics,
})

Implementation

ChatPermissions({
  super.extra,
  super.client_id,
  this.can_send_messages,
  this.can_send_media_messages,
  this.can_send_polls,
  this.can_send_other_messages,
  this.can_add_web_page_previews,
  this.can_change_info,
  this.can_invite_users,
  this.can_pin_messages,
  this.can_manage_topics,
});