delete method

  1. @override
Future<Response> delete(
  1. Uri? url, {
  2. Map<String, String>? headers,
  3. Object? body,
  4. Encoding? encoding,
})

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>);