isPubPackageRootSync function

bool isPubPackageRootSync(
  1. String dirPath
)

@Deprecated('Use isPubPackageRoot')

Implementation

bool isPubPackageRootSync(String dirPath) {
  var pubspecYamlPath = join(dirPath, _pubspecYaml);
  return io.FileSystemEntity.isFileSync(pubspecYamlPath);
}