printUsage method
Prints the command usage information.
Implementation
@override
void printUsage() {
final r = runner;
if (r is CommandRunner<T>) {
r.writeOut(formatUsage());
return;
}
dartio.stdout.writeln(formatUsage());
}
Prints the command usage information.
@override
void printUsage() {
final r = runner;
if (r is CommandRunner<T>) {
r.writeOut(formatUsage());
return;
}
dartio.stdout.writeln(formatUsage());
}