getContact abstract method
返回特定用户的信息
优先从缓存获取,失败则从SDK数据库本地获取,最后从服务端获取
如果needRefresh
为true,则从服务端获取
如果needFriend
为true,则获取好友信息
Implementation
Future<ContactInfo?> getContact(String accId,
{bool needRefresh = false, bool needFriend = true});
返回特定用户的信息
优先从缓存获取,失败则从SDK数据库本地获取,最后从服务端获取
如果needRefresh
为true,则从服务端获取
如果needFriend
为true,则获取好友信息
Future<ContactInfo?> getContact(String accId,
{bool needRefresh = false, bool needFriend = true});