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