get method
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,
),
);
}