getReportManager method
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);