Deletes the file saved at the given path on the disk.
@override Future<void> delete(String path) async { final file = _file(path); if (await file.exists()) await file.delete(); }