pipeline method

ServerPipeline pipeline(
  1. String 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.

Implementation

ServerPipeline pipeline(String name) =>
    pipelines.firstWhere((p) => p.name == name);