getProfile method

ChatUIKitProfile getProfile(
  1. ChatUIKitProfile profile, {
  2. bool force = false,
})

获取用户信息,如果缓存中存在,则直接返回,如果不存在,则调用 profilesHandler 获取用户信息。

Implementation

ChatUIKitProfile getProfile(ChatUIKitProfile profile, {bool force = false}) {
  return getProfiles([profile], force: force)[profile.id]!;
}