parse method

  1. @override
ArgResults parse(
  1. Iterable<String> args
)
override

Parses args, a list of command-line arguments, matches them against the flags and options defined by this parser, and returns the result.

Implementation

@override
ArgResults parse(Iterable<String> args) => Parser(null, this, Queue.of(args)).parse();