internalLinkTypeChatInvite property
The link is a chat invite link. Call checkChatInviteLink with the given invite link to process the link
Implementation
InternalLinkTypeChatInvite? get internalLinkTypeChatInvite {
if (this is InternalLinkTypeChatInvite) {
return this as InternalLinkTypeChatInvite;
}
return null;
}