append property

bool? append

Sets the option for the append mode. This option, when true, means that writes will append to a file instead of overwriting previous contents.

Note that setting { write: true, append: true } has the same effect as setting only { append: true }.

@default {false}

Implementation

_i2.bool? get append => _i3.getProperty(
      this,
      'append',
    );
void append=(bool? value)

Implementation

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