getUserReports method

Future<List<Report>> getUserReports(
  1. String businessId
)

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