getJob method
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);
}
Fetches the current status of job id.
Future<RenderJobView> getJob(String id) async {
final response = await _http.get(baseUrl.resolve('v1/renders/$id'), headers: _auth);
return _parse(response, expect: 200);
}