ToolRunner constructor
ToolRunner({
- required ToolDefinition tool,
- Map<
String, CommandExecutor> executors = const {}, - bool verbose = true,
- StringSink? output,
Implementation
ToolRunner({
required this.tool,
this.executors = const {},
this.verbose = true,
StringSink? output,
}) : output = _resolveOutput(output) {
_effectiveTool = tool;
}