recursive property
bool?
get
recursive
If set to true
, path will be removed even if it's a non-empty directory.
@default {false}
Implementation
_i2.bool? get recursive => _i3.getProperty(
this,
'recursive',
);
set
recursive
(bool? value)
Implementation
set recursive(_i2.bool? value) {
_i3.setProperty(
this,
'recursive',
value ?? _i6.undefined,
);
}