delete method
Deletes this FileSystemEntity.
The exact details vary according to the FileSystemEntity:
Implementation
@override
Future<FileSystemEntity> delete({bool recursive = false}) async {
client.log('WebDAV: DELETE (Folder) $path');
final resolved = await client.resolvePath(path);
await client.trashItem(resolved['uuid'], 'folder');
return this;
}