describeArguments function

ArgParser describeArguments()

Implementation

ArgParser describeArguments() {
  return ArgParser()
    ..addFlag(help, abbr: 'h', negatable: false, hide: true)
    ..addOption(input, abbr: "i", help: "Path to the input xml file")
    ..addOption(output,
        abbr: "o",
        help:
            "Path to the output dart file. Prints to console if not specified")
    ..addFlag(
      splitByFiles,
      abbr: 's',
      negatable: false,
      help: "Create a file for each generated models.\n"
          "Files are stored in the provided by $output option folder.",
    );
}