optarg property

String? get optarg

For communication from getopt to the caller. When getopt finds an option that takes an argument, the argument value is stored here.

Implementation

String? get optarg => _optarg;
set optarg (String? value)

Implementation

set optarg(String? value) => _optarg = value;