internalLinkTypePublicChat property
The link is a link to a chat by its username. Call searchPublicChat with the given chat username to process the link
Implementation
InternalLinkTypePublicChat? get internalLinkTypePublicChat {
if (this is InternalLinkTypePublicChat) {
return this as InternalLinkTypePublicChat;
}
return null;
}