append property
bool?
get
append
If set to true
, will append to a file instead of overwriting previous
contents.
@default {false}
Implementation
_i2.bool? get append => _i3.getProperty(
this,
'append',
);
set
append
(bool? value)
Implementation
set append(_i2.bool? value) {
_i3.setProperty(
this,
'append',
value ?? _i6.undefined,
);
}