PromptArgument constructor

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

Implementation

PromptArgument({
  required this.name,
  required this.description,
  this.required = false,
  this.defaultValue,
});