blocks property

num? get blocks

Number of blocks allocated to the file, in 512-byte units.

Linux/Mac OS only.

Implementation

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

Implementation

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