getContact method
- {required String userId}
获取联系人信息。
Param userId
联系人Id。
Return 联系下信息。
Throws 如果有方法调用的异常会在这里抛出,可以看到具体错误原因。请参见 EMError。
Implementation
Future<EMContact?> getContact({required String userId}) async {
Map req = {'userId': userId};
Map result = await _channel.invokeMethod(ChatMethodKeys.getContact, req);
try {
EMError.hasErrorFromResult(result);
if (result.containsKey(ChatMethodKeys.getContact)) {
return EMContact.fromJson(result[ChatMethodKeys.getContact]);
} else {
return null;
}
} on EMError catch (e) {
throw e;
}
}