printUsage method

void printUsage()

Print the usage

Implementation

void printUsage() {
  printNameDescription();
  stdout.writeln();
  stdout.writeln(parser.usage);
  if (_commands.isNotEmpty) {
    printCommands();
  }
}