isLink static method

Future<bool> isLink(
  1. String path
)
override

Whether path refers to a link.

Checks whether type(path, followLinks: false) returns FileSystemEntityType.link.

Implementation

static Future<bool> isLink(String path) => Future.value(isLinkSync(path));