isDirectory property
bool
get
isDirectory
True if this is info for a regular directory. Mutually exclusive to
FileInfo.isFile
and FileInfo.isSymlink
.
Implementation
_i2.bool get isDirectory => _i3.getProperty(
this,
'isDirectory',
);
set
isDirectory
(bool value)
Implementation
set isDirectory(_i2.bool value) {
_i3.setProperty(
this,
'isDirectory',
value,
);
}