ArgParserException constructor

ArgParserException(
  1. String message, [
  2. Iterable<String>? commands
])

Implementation

ArgParserException(super.message, [Iterable<String>? commands])
    : commands = commands == null ? const [] : List.unmodifiable(commands);