isLink method

Future<bool> isLink (String path)

Checks if type(path, followLinks: false) returns FileSystemEntityType.LINK.

Implementation

static Future<bool> isLink(String path) =>
    _getType(path, false).then((type) => (type == FileSystemEntityType.LINK));