Pipeline constructor

Pipeline({
  1. List<Action>? actions,
  2. Secret? encryptedEnvironment,
  3. Map<String, String>? environment,
  4. Resources? resources,
  5. String? timeout,
})

Implementation

Pipeline({
  this.actions,
  this.encryptedEnvironment,
  this.environment,
  this.resources,
  this.timeout,
});