getTotalUnreadChannelCount static method
Gets the total number of unread GroupChannel
s the current user has joined.
Implementation
static Future<int> getTotalUnreadChannelCount(
[GroupChannelTotalUnreadChannelCountParams? params]) async {
final result = await _instance._chat.getTotalUnreadChannelCount(params);
sbLog.i(StackTrace.current, 'return: $result');
return result;
}