get method

  1. @override
Future<Response> get(
  1. Uri url, {
  2. Map<String, String>? headers,
})

Sends an HTTP GET request with the given headers to the given URL.

For more fine-grained control over the request, use send instead.

Implementation

@override
Future<Response> get(final url, {final Map<String, String>? headers}) async {
  return _checkResponse(
    await super.get(
      Uri.parse('$_baseUrl$url'),
      headers: headers,
    ),
  );
}