delete method

Future<HttpClientResponse> delete(
  1. String path, {
  2. Map<String, String>? headers,
  3. bool requiresAuth = false,
  4. int? timeoutMs,
})

Implementation

Future<HttpClientResponse> delete(
  String path, {
  Map<String, String>? headers,
  bool requiresAuth = false,
  int? timeoutMs,
}) => send(
  method: 'DELETE',
  path: path,
  headers: headers,
  requiresAuth: requiresAuth,
  timeoutMs: timeoutMs,
);