mode property

num? mode

Permissions to use if creating the file (defaults to 0o666, before the process's umask).

Ignored on Windows.

Implementation

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

Implementation

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