isFile function

bool isFile(
  1. String path
)

Returns true if the given path points to a file.

isFile("~/fred.jpg");

Implementation

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