internalLinkTypeStickerSet property

InternalLinkTypeStickerSet? internalLinkTypeStickerSet

The link is a link to a sticker set. Call searchStickerSet with the given sticker set name to process the link and show the sticker set

Implementation

InternalLinkTypeStickerSet? get internalLinkTypeStickerSet {
  if (this is InternalLinkTypeStickerSet) {
    return this as InternalLinkTypeStickerSet;
  }
  return null;
}