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