mode property

num? get mode

UNSTABLE*: Match behavior with Go on Windows for mode.

The underlying raw st_mode bits that contain the standard Unix permissions for this file/directory.

Implementation

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

Implementation

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