isSymlink property
bool
get
isSymlink
Returns whether this is a symbolic link.
Implementation
bool get isSymlink => stat != null && stat!.type == FileSystemEntityType.link;
Returns whether this is a symbolic link.
bool get isSymlink => stat != null && stat!.type == FileSystemEntityType.link;