getProfile method
获取用户信息,如果缓存中存在,则直接返回,如果不存在,则调用 profilesHandler 获取用户信息。
Implementation
ChatUIKitProfile getProfile(ChatUIKitProfile profile, {bool force = false}) {
return getProfiles([profile], force: force)[profile.id]!;
}
获取用户信息,如果缓存中存在,则直接返回,如果不存在,则调用 profilesHandler 获取用户信息。
ChatUIKitProfile getProfile(ChatUIKitProfile profile, {bool force = false}) {
return getProfiles([profile], force: force)[profile.id]!;
}