hasIssues property
bool
get
hasIssues
Check if there are any issues
Implementation
bool get hasIssues {
// Check for dependencies that need action
final needsAction = dependencies.any((dep) => dep.needsAction);
return needsAction || duplicates.isNotEmpty;
}