getReportsByUser method

Future<List<Report>> getReportsByUser(
  1. String userId
)

Gets reports created by a specific user

Implementation

Future<List<Report>> getReportsByUser(String userId) async {
  return await _reportService.getReportsByUser(userId);
}