isInstalled method

bool isInstalled(
  1. String packageName
)

Returns true if the package is installed in pub-cache

Implementation

bool isInstalled(String packageName) {
  try {
    return findPrimaryVersion(packageName) != null;
  } on core.FindException {
    return false;
  }
}