clear property

bool? get clear

Controls whether the terminal is cleared before executing the task.

Implementation

_i2.bool? get clear => _i5.getProperty(
      this,
      'clear',
    );
set clear (bool? value)

Implementation

set clear(_i2.bool? value) {
  _i5.setProperty(
    this,
    'clear',
    value ?? _i6.undefined,
  );
}