ChatInviteLinks constructor

const ChatInviteLinks({
  1. required int totalCount,
  2. required List<ChatInviteLink> inviteLinks,
  3. dynamic extra,
  4. int? clientId,
})

Contains a list of chat invite links

Implementation

const ChatInviteLinks({
  required this.totalCount,
  required this.inviteLinks,
  this.extra,
  this.clientId,
});