removeBlacklist static method

Future<NIMResult<void>> removeBlacklist(
  1. String userId
)

将该用户从黑名单中移除

Implementation

static Future<NIMResult<void>> removeBlacklist(String userId) {
  return NimCore.instance.userService.removeFromBlackList(userId);
}