updateReport method

Future<void> updateReport(
  1. String reportId,
  2. Map<String, dynamic> data
)

//////////// //////////// 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);
}