ordered property

List<String> ordered
final

List of arguments without names

For example, afte parsing next command: dart_app param1 --param2 value2 --param3=value3

ordered return list with 'param1'

Implementation

final List<String> ordered = [];