updateReport method
//////////// //////////// Updates an existing report (pass-through to ReportService)
Implementation
// II.E - Report Management Methods
///////////////
/// Updates an existing report (pass-through to ReportService)
Future<void> updateReport(String reportId, Map<String, dynamic> data) async {
await _reportService.updateReport(reportId, data);
}