hasAllFiles method
Implementation
bool hasAllFiles(List<String> filePaths, String targetDescription) {
final missing =
filePaths.where((path) => !common.fileExists(path)).toList();
if (missing.isEmpty) {
return true;
}
common.logSkipped(
targetDescription,
missing.join(", "),
"required file missing",
);
return false;
}