checkFollowType method

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

检查指定用户的关注类型

Implementation

@override
Future<V2TimValueCallback<List<V2TimFollowTypeCheckResult>>> checkFollowType({
  required List<String> userIDList,
}) async {
  return V2TimValueCallback<List<V2TimFollowTypeCheckResult>>.fromJson(
    formatJson(
      await _channel.invokeMethod(
        "checkFollowType",
        buildFriendManagerParam(
          {
            "userIDList": userIDList,
            "ability": Utils.getAbility(),
          },
        ),
      ),
    ),
  );
}