pathExists static method

bool pathExists(
  1. String path
)

Implementation

static bool pathExists(String path) {
  return FileSystemEntity.typeSync(path) != FileSystemEntityType.notFound;
}