internalLinkTypeChatBoost property

InternalLinkTypeChatBoost? internalLinkTypeChatBoost

The link is a link to boost a Telegram chat. Call getChatBoostLinkInfo with the given URL to process the link.

Implementation

InternalLinkTypeChatBoost? get internalLinkTypeChatBoost {
  if (this is InternalLinkTypeChatBoost) {
    return this as InternalLinkTypeChatBoost;
  }
  return null;
}