getUnreadItemCount static method
- List<
UnreadItemKey> keys
Gets the unread item count of GroupChannel
s from keys.
Implementation
static Future<GroupChannelUnreadItemCount> getUnreadItemCount(
List<UnreadItemKey> keys) async {
final result = await _instance._chat.getUnreadItemCount(keys);
sbLog.i(StackTrace.current, 'keys: $keys, return: $result');
return result;
}