stickerTypeCustomEmoji property

StickerTypeCustomEmoji? stickerTypeCustomEmoji

The sticker is a custom emoji to be used inside message text and caption

Implementation

StickerTypeCustomEmoji? get stickerTypeCustomEmoji {
  if (this is StickerTypeCustomEmoji) {
    return this as StickerTypeCustomEmoji;
  }
  return null;
}