PromptArgument constructor

PromptArgument({
  1. required String name,
  2. String? title,
  3. String? description,
  4. bool? required,
})

Implementation

PromptArgument({
  required this.name,
  this.title,
  this.description,
  this.required,
});