ActionInfo constructor

ActionInfo(
  1. String name,
  2. String title,
  3. String? icon,
  4. int? group,
  5. String? template,
  6. List<ControlBase> arguments,
  7. String? adjective,
  8. String? verb,
  9. String? past,
  10. String? you,
  11. bool? multiple,
)

Implementation

ActionInfo(
    this.name,
    this.title,
    this.icon,
    this.group,
    this.template,
    this.arguments,
    this.adjective,
    this.verb,
    this.past,
    this.you,
    this.multiple);