size property

num get size

The size in bytes.

Note: If the file changed, it is important to provide an updated size. Otherwise there may be optimizations in place that will not show the updated file contents in an editor for example.

Implementation

_i2.num get size => _i5.getProperty(
      this,
      'size',
    );
set size (num value)

Implementation

set size(_i2.num value) {
  _i5.setProperty(
    this,
    'size',
    value,
  );
}