Prompt constructor

Prompt({
  1. List<Icon>? icons,
  2. required String name,
  3. String? title,
  4. String? description,
  5. List<PromptArgument>? arguments,
  6. MetaObject? $meta,
})

Implementation

Prompt({
  this.icons,
  required this.name,
  this.title,
  this.description,
  this.arguments,
  this.$meta,
});