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
i5.Future<i2.Response> get(Uri? url, {Map<String, String>? headers}) =>
(super.noSuchMethod(Invocation.method(#get, [url], {#headers: headers}),
returnValue: Future<i2.Response>.value(_FakeResponse()))
as i5.Future<i2.Response>);