delete method

Future<StreamedResponse> delete(
  1. PathUri path
)

Deletes the resource at path.

See:

Implementation

Future<http.StreamedResponse> delete(PathUri path) {
  final request = delete_Request(path);

  return csrfClient.send(request);
}