deleteFile method
Implementation
@override
Future<void> deleteFile(String path) async {
try {
final ref = _storage.ref().child(path);
await ref.delete();
} on FirebaseException catch (e) {
throw Exception('Error deleting file: ${e.message}');
}
}