getCustomEmojiStickers method

Future<List<Sticker>> getCustomEmojiStickers(
  1. List<String> customEmojiIds
)
inherited

Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects

Implementation

Future<List<Sticker>> getCustomEmojiStickers(List<String> customEmojiIds) {
  return _client.apiCall(_token, 'getCustomEmojiStickers', {
    'custom_emoji_ids': getCustomEmojiStickers,
  });
}