internalLinkTypeVideoChat property

InternalLinkTypeVideoChat? internalLinkTypeVideoChat

The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link

Implementation

InternalLinkTypeVideoChat? get internalLinkTypeVideoChat {
  if (this is InternalLinkTypeVideoChat) {
    return this as InternalLinkTypeVideoChat;
  }
  return null;
}