get method

Future<Pipeline> get(
  1. int id
)

Implementation

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

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

  return new Pipeline.fromJson(json);
}