hasAsyncDependency method
Checks if a given DependencyConfig has any asynchronous dependencies.
Implementation
bool hasAsyncDependency(DependencyConfig dep) {
_ensureAsyncDepsMapInitialized();
return _hasAsyncDeps![dep.id] ?? false;
}
Checks if a given DependencyConfig has any asynchronous dependencies.
bool hasAsyncDependency(DependencyConfig dep) {
_ensureAsyncDepsMapInitialized();
return _hasAsyncDeps![dep.id] ?? false;
}