getJob method

Future<RenderJobView> getJob(
  1. String id
)

Fetches the current status of job id.

Implementation

Future<RenderJobView> getJob(String id) async {
  final response = await _http.get(baseUrl.resolve('v1/renders/$id'), headers: _auth);
  return _parse(response, expect: 200);
}