getReportById method

Future<List> getReportById({
  1. required String reportId,
})

Get a specific report by reportId

Implementation

Future<List<dynamic>> getReportById({
  /// A specific report id
  required String reportId,
}) async {
  return await getReportByIdV1(
    connection: _connection,
    reportId: reportId,
  );
}