TInput constructor

const TInput({
  1. required String name,
  2. List<TContext>? context,
  3. List<TEndGoal>? goals,
  4. List<TIssue>? issues,
  5. List<TSpec>? specs,
  6. Map<String, Object>? parameters,
})

Implementation

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