getJobById method

Future<List> getJobById({
  1. required String jobId,
})

Get a specific report by reportId

Implementation

Future<List<dynamic>> getJobById({
  required String jobId,
}) async {
  return await getJobByIdV1(
    connection: _connection,
    jobId: jobId,
  );
}