Recipes constructor

Recipes({
  1. List<String>? configure,
  2. List<String>? deploy,
  3. List<String>? setup,
  4. List<String>? shutdown,
  5. List<String>? undeploy,
})

Implementation

Recipes({
  this.configure,
  this.deploy,
  this.setup,
  this.shutdown,
  this.undeploy,
});