InternalLinkTypeChatInvite constructor

const InternalLinkTypeChatInvite({
  1. required String inviteLink,
  2. dynamic extra,
  3. int? clientId,
})

The link is a chat invite link. Call checkChatInviteLink with the given invite link to process the link

Implementation

const InternalLinkTypeChatInvite({
  required this.inviteLink,
  this.extra,
  this.clientId,
});