fix: fix warning

This commit is contained in:
Sergey Penkovsky
2025-05-02 11:48:37 +03:00
parent 585385980f
commit 63cd56a696

View File

@@ -130,6 +130,6 @@ class Scope {
} }
// 2 Поиск зависимостей в родительском скоупе // 2 Поиск зависимостей в родительском скоупе
return _parentScope != null ? _parentScope!.tryResolve(named: named) : null; return _parentScope?.tryResolve(named: named);
} }
} }