isLinkSync method
- String path
Synchronously checks if type(path) returns
io.FileSystemEntityType.LINK.
Implementation
bool isLinkSync(String path) =>
    typeSync(path, followLinks: false) == io.FileSystemEntityType.link;Synchronously checks if type(path) returns
io.FileSystemEntityType.LINK.
bool isLinkSync(String path) =>
    typeSync(path, followLinks: false) == io.FileSystemEntityType.link;