getUserReportById method
Implementation
Future<Report> getUserReportById(
String businessId,
int id,
String reportType, //dashboard or report
) async {
if (!isReady) {
throw Exception(
'Report manager is not ready for usage, call initialise before attempting to make this call');
} else {
return client.getReportById(
businessId,
id,
);
}
}