remove method

Future<void> remove(
  1. String path, [
  2. CancelToken? cancelToken
])

Remove a folder or file If you remove the folder, some webdav services require a '/' at the end of the path.

Implementation

Future<void> remove(String path, [CancelToken? cancelToken]) {
  return removeAll(path, cancelToken);
}