stickerFullTypeCustomEmoji property
The sticker is a custom emoji to be used inside message text and caption. Currently, only Telegram Premium users can use custom emoji
Implementation
StickerFullTypeCustomEmoji? get stickerFullTypeCustomEmoji {
if (this is StickerFullTypeCustomEmoji) {
return this as StickerFullTypeCustomEmoji;
}
return null;
}