getSubscribedCustomTypeUnreadMessageCount static method

int? getSubscribedCustomTypeUnreadMessageCount(
  1. String customType
)

Gets the number of unread message of GroupChannel with subscribed custom type.

Implementation

static int? getSubscribedCustomTypeUnreadMessageCount(String customType) {
  final result =
      _instance._chat.subscribedCustomTypeUnreadMessageCount(customType);
  sbLog.i(StackTrace.current, 'customType: $customType, return: $result');
  return result;
}