ArgParserException constructor

ArgParserException(
  1. String message, [
  2. Iterable<String>? commands,
  3. String? argumentName,
  4. dynamic source,
  5. int? offset,
])

Implementation

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