mtime property
DateTime?
get
mtime
The last modification time of the file. This corresponds to the mtime
field from stat
on Linux/Mac OS and ftLastWriteTime
on Windows. This
may not be available on all platforms.
Implementation
_i2.DateTime? get mtime => _i3.getProperty(
this,
'mtime',
);
set
mtime
(DateTime? value)
Implementation
set mtime(_i2.DateTime? value) {
_i3.setProperty(
this,
'mtime',
value ?? _i6.undefined,
);
}