isReadable function

bool isReadable(
  1. String path
)

checks if the passed path (a file or directory) is readable by the user that owns this process

Implementation

bool isReadable(String path) => _Is().isReadable(path);