isFileSync static method

bool isFileSync(
  1. String path
)
override

Synchronously checks whether path refers to a file.

Checks whether typeSync(path) returns FileSystemEntityType.file.

Implementation

static bool isFileSync(String path) => typeSync(path) == FileSystemEntityType.file;