getUserProfileV2 method
Implementation
Future<UserProfileV2?> getUserProfileV2() async {
return _kindeApi.getOAuthApi().getUserProfileV2().then((value) {
return value.data;
}).catchError((error) {
throw handleError(error);
});
}
Future<UserProfileV2?> getUserProfileV2() async {
return _kindeApi.getOAuthApi().getUserProfileV2().then((value) {
return value.data;
}).catchError((error) {
throw handleError(error);
});
}