getForFullResponse static method

Future<Response> getForFullResponse(
  1. String url, {
  2. Map<String, dynamic>? queryParameters,
  3. Map<String, String>? headers,
})

Sends a HTTP GET request to the given url with the given queryParameters and headers. Returns the full Response object.

Implementation

static Future<Response> getForFullResponse(String url,
    {Map<String, dynamic>? queryParameters,
    Map<String, String>? headers}) async {
  return await _get(url,
      queryParameters: queryParameters,
      headers: headers,
      returnType: HttpRequestReturnType.FULLRESPONSE) as Response;
}