getEmoji method

Future<Emoji> getEmoji(
  1. String key
)

Retrieves the emoji with the specified key.

key : The key of the emoji to retrieve.

Returns the emoji.

Implementation

Future<Emoji> getEmoji(String key) async {
  return await SendbirdChat.getEmoji(key);
}