checkFollowType method

Future<V2TimValueCallback<List<V2TimFollowTypeCheckResult>>> checkFollowType(
  1. {required List<String> userIDList}
)

检查指定用户的关注类型

Implementation

Future<V2TimValueCallback<List<V2TimFollowTypeCheckResult>>> checkFollowType({
  required List<String> userIDList,
}) async {
  if (kIsWeb) {
    return TencentCloudChatSdkPlatform.instance
        .checkFollowType(userIDList: userIDList);
  }

  return TIMFriendshipManager.instance
      .checkFollowType(userIDList: userIDList);
}