get method Null safety
override
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(Uri? url,
{String? endpoint,
Map<String, String>? headers,
Map<String, dynamic>? params}) =>
_inner.get(_buildEndpointUri(url, endpoint: endpoint),
headers: _interceptHeader(headers), params: params);