StickerFullTypeCustomEmoji constructor

const StickerFullTypeCustomEmoji({
  1. required int customEmojiId,
  2. required bool needsRepainting,
})

The sticker is a custom emoji to be used inside message text and caption. Currently, only Telegram Premium users can use custom emoji

Implementation

const StickerFullTypeCustomEmoji({
  required this.customEmojiId,
  required this.needsRepainting,
});