AtCommandRunner constructor

AtCommandRunner()

Implementation

AtCommandRunner() : super(atAppName, atAppDescription) {
  argParser.addFlag(
    'version',
    negatable: false,
    help: 'Print the current version.',
  );
  addCommand(CreateCommand());
  addCommand(PackageCommand());
}