delete method
Sends an HTTP DELETE 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> delete(Uri? url,
{Map<String, String>? headers,
Object? body,
i6.Encoding? encoding}) =>
(super.noSuchMethod(
Invocation.method(#delete, [url],
{#headers: headers, #body: body, #encoding: encoding}),
returnValue: Future<i2.Response>.value(_FakeResponse()))
as i5.Future<i2.Response>);