get abstract method

Future<HttpResponse> get(
  1. String url,
  2. {Map<String, String>? headers,
  3. Map<String, String>? queryParameters}
)

Sends a GET request to the specified url.

Optionally, you can specify custom headers and queryParameters.

Returns a Future that completes with an HttpResponse when the request is complete.

Implementation

Future<HttpResponse> get(String url,
    {Map<String, String>? headers, Map<String, String>? queryParameters});