getAllContacts method
获取本地存储的所有好友。
Return 好友列表。
Throws 如果有方法调用的异常会在这里抛出,可以看到具体错误原因。请参见 EMError。
Implementation
Future<List<EMContact>> getAllContacts() async {
Map result = await _channel.invokeMethod(ChatMethodKeys.getAllContacts);
try {
EMError.hasErrorFromResult(result);
List<EMContact> list = [];
result[ChatMethodKeys.getAllContacts]?.forEach((element) {
list.add(EMContact.fromJson(element));
});
return list;
} on EMError catch (e) {
throw e;
}
}