isLink function Null safety
- String path
Returns true if the given path
is a symlink
// ```dart isLink("~/fred.jpg");
Implementation
bool isLink(String path) => core.isLink(path);
Returns true if the given path
is a symlink
// ```dart isLink("~/fred.jpg");
bool isLink(String path) => core.isLink(path);