lstat function

Stat lstat(
  1. String pathToFile
)

Implementation

Stat lstat(String pathToFile) =>
    Platform.isMacOS ? mac_lstat(pathToFile) : linux_lstat(pathToFile);