getContact abstract method

Future<ContactInfo?> getContact(
  1. String accId, {
  2. bool needRefresh = false,
  3. bool needFriend = true,
})

返回特定用户的信息 优先从缓存获取,失败则从SDK数据库本地获取,最后从服务端获取 如果needRefresh为true,则从服务端获取 如果needFriend为true,则获取好友信息

Implementation

Future<ContactInfo?> getContact(String accId,
    {bool needRefresh = false, bool needFriend = true});