getUserReports method
Implementation
Future<List<Report>> getUserReports(String businessId) async {
if (!isReady) {
throw Exception(
'Report manager is not ready for usage, call initialise before attempting to make this call');
} else {
return client.getUserReports(businessId);
}
}