mtime property

num get mtime

The modification timestamp in milliseconds elapsed since January 1, 1970 00:00:00 UTC.

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

Implementation

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

Implementation

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