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