checkIfExit function

bool checkIfExit(
  1. String path,
  2. String pFile
)

Implementation

bool checkIfExit(String path, String pFile) {
  final file = File(normalize(join(path, pFile)));
  return file.existsSync();
}