getUser method

Future<UserProfile?> getUser()

Implementation

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