existsSync static method

bool existsSync(
  1. List<String> paths
)

Implementation

static bool existsSync(List<String> paths) {
  bool anyNotExist = false;
  for(String path in paths) {
    if(!File(path).existsSync()){
      anyNotExist = true;
    }
  }
  return anyNotExist;
}