deleteReport method
- String reportId
Deletes a report
Implementation
Future<void> deleteReport(String reportId) async {
try {
await _firestore.collection(_collectionPath).doc(reportId).delete();
} catch (e) {
print('Error deleting report: $e');
rethrow;
}
}