projectFileExists static method

bool projectFileExists(
  1. List<String> relativePath
)

Implementation

static bool projectFileExists(List<String> relativePath) {
  final path = fullPathFor(relativePath);
  return pathExists(path);
}