getNonOptionArgs method
Returns all non-option arguments (those without --
prefix).
These are usually positional parameters.
Example:
dart run main.dart file.txt --verbose
// getNonOptionArgs() returns ['file.txt']
@return a list of non-option arguments, or an empty list if none.
Implementation
@override
List<String> getNonOptionArgs() => source.getNonOptionArgs();