getUserReports method
Implementation
Future<List<Report>> getUserReports(String businessId) async {
if (!isReady) {
throw LittlefishReportException(
ReportErrorCodes.reportClientNotReady.code,
ReportErrorCodes.reportClientNotReady.message,
);
} else {
return client.getUserReports(businessId);
}
}