isSymlink property

bool get isSymlink

True if this is info for a symlink. Mutually exclusive to DirEntry.isFile and DirEntry.isDirectory.

Implementation

_i2.bool get isSymlink => _i3.getProperty(
      this,
      'isSymlink',
    );
set isSymlink (bool value)

Implementation

set isSymlink(_i2.bool value) {
  _i3.setProperty(
    this,
    'isSymlink',
    value,
  );
}