stat function

Stat stat(
  1. String pathToFile
)

Implementation

Stat stat(String pathToFile) =>
    Platform.isMacOS ? mac_stat(pathToFile) : linux_stat(pathToFile);