PromptArgument constructor

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

Implementation

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