named property
final
Map of arguments with values
For example, afte parsing next command: dart_app param1 --param2 value2 --param3=value3
named return map with {'param2': 'value2', 'param3'='value3'}
Implementation
final Map<String, String> named = {};