TranslateCommand constructor

TranslateCommand()

Implementation

TranslateCommand() {
  argParser.addOption(
    "target",
    abbr: "t",
    help: "Path to the Dart file to translate",
    mandatory: true,
  );
  argParser.addFlag(
    "verbose",
    abbr: "v",
    help: "Muestra mensajes de debug del compilador.",
    negatable: false,
  );
}