ChatInviteLink constructor

ChatInviteLink({
  1. String? extra,
  2. int? client_id,
  3. string? invite_link,
  4. string? name,
  5. int53? creator_user_id,
  6. int32? date,
  7. int32? edit_date,
  8. int32? expiration_date,
  9. int32? member_limit,
  10. int32? member_count,
  11. int32? pending_join_request_count,
  12. Bool? creates_join_request,
  13. Bool? is_primary,
  14. Bool? is_revoked,
})

Implementation

ChatInviteLink({
  super.extra,
  super.client_id,
  this.invite_link,
  this.name,
  this.creator_user_id,
  this.date,
  this.edit_date,
  this.expiration_date,
  this.member_limit,
  this.member_count,
  this.pending_join_request_count,
  this.creates_join_request,
  this.is_primary,
  this.is_revoked,
});