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