getEmojiCategory method

Future<EmojiCategory> getEmojiCategory(
  1. int categoryId
)

Retrieves the emoji category with the specified ID.

categoryId : The ID of the emoji category to retrieve.

Returns the emoji category.

Implementation

Future<EmojiCategory> getEmojiCategory(int categoryId) async {
  return await SendbirdChat.getEmojiCategory(categoryId);
}