getTextEmojis method

Future<List<TextEmoji>> getTextEmojis()

List all the text emoji available to this client.

Implementation

Future<List<TextEmoji>> getTextEmojis() async => (await getEmojiDefinitions())
    .map((definition) => TextEmoji(id: Snowflake.zero, manager: guilds[Snowflake.zero].emojis, name: definition.surrogates))
    .toList();