ChatInviteLinkInfo constructor

const ChatInviteLinkInfo({
  1. required int chatId,
  2. required int accessibleFor,
  3. required ChatType type,
  4. required String title,
  5. ChatPhotoInfo? photo,
  6. required String description,
  7. required int memberCount,
  8. required List<int> memberUserIds,
  9. required bool createsJoinRequest,
  10. required bool isPublic,
  11. dynamic extra,
  12. int? clientId,
})

Contains information about a chat invite link

Implementation

const ChatInviteLinkInfo({
  required this.chatId,
  required this.accessibleFor,
  required this.type,
  required this.title,
  this.photo,
  required this.description,
  required this.memberCount,
  required this.memberUserIds,
  required this.createsJoinRequest,
  required this.isPublic,
  this.extra,
  this.clientId,
});