getUserInfo method

Future<NIMResult<NIMUser>> getUserInfo(
  1. String userId
)

从本地数据库中获取用户资料 通过用户账号userId查询并返回该用户的资料

Implementation

Future<NIMResult<NIMUser>> getUserInfo(String userId) async {
  return _platform.getUserInfo(userId);
}