arguments property

List<String> arguments
final

List of all arguments

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

arguments return list 'param1', '--param2', 'value2', '--param3=value3'

Implementation

final List<String> arguments = [];