pipeline method
Retrieve a pipeline from the server by its name.
Throws an exception if a pipeline with the name does not exist in the server.
Implementation
ServerPipeline pipeline(String name) =>
pipelines.firstWhere((p) => p.name == name);
Retrieve a pipeline from the server by its name.
Throws an exception if a pipeline with the name does not exist in the server.
ServerPipeline pipeline(String name) =>
pipelines.firstWhere((p) => p.name == name);