fileExist function

bool fileExist(
  1. String path
)

Implementation

bool fileExist(String path) {
  return File(path).existsSync();
}