Argument constructor

const Argument(
  1. Command command,
  2. String name,
  3. CompleteHandler? handler, {
  4. bool variadic = false,
})

Implementation

const Argument(
  this.command,
  this.name,
  this.handler, {
  this.variadic = false,
});