InternalLinkTypeChatFolderInvite constructor

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

The link is an invite link to a chat folder. Call checkChatFolderInviteLink with the given invite link to process the link

Implementation

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