NodeStartCommand constructor

NodeStartCommand()

Creates the node-start command.

Implementation

NodeStartCommand() {
  addNodeStartOptions(argParser);
  argParser.addFlag(
    'verbose',
    abbr: 'v',
    negatable: false,
    help:
        "Show the connection lifecycle, not just failures — every attempt, "
        'handshake and heartbeat.',
  );
}