Option constructor

const Option(
  1. Command command,
  2. String value,
  3. String description,
  4. CompleteHandler? handler, {
  5. String? alias,
  6. bool? isBool,
})

Implementation

const Option(
  this.command,
  this.value,
  this.description,
  this.handler, {
  this.alias,
  this.isBool,
});