option property

String option

Get the option value.

Implementation

String get option => (_option ?? "").trim().toLowerCase();
void option=(String? option)

Set option to be used for executing the task.

Implementation

set option(String? option) {
  _option = option;
}