internalLinkTypeChatFolderInvite property
The link is an invite link to a chat folder. Call checkChatFolderInviteLink with the given invite link to process the link
Implementation
InternalLinkTypeChatFolderInvite? get internalLinkTypeChatFolderInvite {
if (this is InternalLinkTypeChatFolderInvite) {
return this as InternalLinkTypeChatFolderInvite;
}
return null;
}