delete method

Future<StreamedResponse> delete(
  1. PathUri path
)

Deletes the resource at path.

See http://www.webdav.org/specs/rfc2518.html#METHOD_DELETE for more information.

Implementation

Future<http.StreamedResponse> delete(PathUri path) => _send(
      'DELETE',
      _constructUri(path),
    );