Input constructor

const Input({
  1. required String name,
  2. List<Context>? context,
  3. List<EndGoal>? goals,
  4. List<Issue>? issues,
  5. List<Spec>? specs,
  6. Map<String, Object>? parameters,
})

Implementation

const Input({
  required super.name,
  this.context,
  this.goals,
  this.issues,
  this.specs,
  this.parameters,
});