Checks if a file exists at the specified path.
path
Returns: true if the file exists, otherwise false.
true
false
static bool isFileExists(String path) => File(path).existsSync();