LiveCommandOption constructor

const LiveCommandOption({
  1. required String kind,
  2. required String name,
  3. String? abbr,
  4. String? help,
  5. List<String>? allowed,
  6. Object? defaultValue,
})

Creates a LiveCommandOption.

Implementation

const LiveCommandOption({
  required this.kind,
  required this.name,
  this.abbr,
  this.help,
  this.allowed,
  this.defaultValue,
});