getUnreadItemCount method

Future<GroupChannelUnreadItemCount> getUnreadItemCount(
  1. List<UnreadItemKey> keys
)

Retrieves the count of unread items for the specified keys.

keys : The keys of the items to retrieve the unread count for.

Implementation

Future<GroupChannelUnreadItemCount> getUnreadItemCount(
    List<UnreadItemKey> keys) async {
  return await SendbirdChat.getUnreadItemCount(keys);
}