getResponse method

Future<Response> getResponse(
  1. User? user,
  2. QueryType? queryType
)

Implementation

Future<Response> getResponse(
  final User? user,
  final QueryType? queryType,
) async =>
    await HttpHelper().doPostRequest(
      UriHelper.getPostUri(
        path: getUriPath(),
        queryType: queryType,
      ),
      getParametersMap(),
      user,
      queryType: queryType,
      addCredentialsToBody: false,
    );