getReportManager method

ReportManager getReportManager({
  1. required String reportId,
})

Returns an instance of ReportManager which can be used for operations related to a specific report having a unique id known as reportId

ReportManager reportManager = tenantManager.getReportManager(reportId: 'id-of-report');

Implementation

ReportManager getReportManager({required String reportId}) =>
    ReportManager(reportId: reportId);