DevToolExecutionContext constructor

DevToolExecutionContext({
  1. ArgResults? argResults,
  2. String? commandName,
  3. void usageException(
    1. String message
    )?,
  4. bool verbose = false,
})

Implementation

DevToolExecutionContext(
    {this.argResults,
    this.commandName,
    void Function(String message)? usageException,
    this.verbose = false})
    : _usageException = usageException;