delete<Body> method

Stream delete<Body>(
  1. String url, {
  2. Map<String, String> headers = const {},
})

Implementation

Stream delete<Body>(
  String url, {
  Map<String, String> headers = const {},
}) =>
    send(
      Request(
        'DELETE',
        url,
        baseUrl,
        headers: headers,
      ),
    );