deleteFile method

  1. @override
Future<void> deleteFile(
  1. String path
)
override

Deletes the file or directory at the specified path.

Implementation

@override
Future<void> deleteFile(String path) async {
  await _icloudSync.delete(
    containerId: _containerId,
    relativePath: path,
  );
}