get method

Future<Job> get(
  1. int? id
)

Implementation

Future<Job> get(int? id) async {
  final uri = _project.buildUri(['jobs', '$id']);

  final json = await _gitLab.request(uri) as Map;

  return new Job.fromJson(json);
}