getUserProfile method
Implementation
Future<UserProfile?> getUserProfile() async {
final profile = await api.getPartnerUserProfile();
userInfo = profile;
return profile;
}
Future<UserProfile?> getUserProfile() async {
final profile = await api.getPartnerUserProfile();
userInfo = profile;
return profile;
}