deleteFile method
Deletes the file or directory at the specified path.
Implementation
@override
Future<void> deleteFile(String path) async {
await _icloudSync.delete(
containerId: _containerId,
relativePath: path,
isDirectory: path.endsWith('/'),
);
}