hasIssues property

bool get hasIssues

Check if there are any issues

Implementation

bool get hasIssues {
  // Check for dependencies that need action
  final bool needsAction =
      dependencies.any((DependencyInfo dep) => dep.needsAction);
  return needsAction || duplicates.isNotEmpty;
}