fileExists function

bool fileExists(
  1. String filePath
)

Implementation

bool fileExists(String filePath) {
  return File(filePath).existsSync();
}