getUserProfileV2 method

Future<UserProfileV2?> getUserProfileV2()

Implementation

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