find<T> method
T?
find<T>({})
Implementation
T? find<T>(
{Object? key,
bool inValues = true,
bool inDependentValues = true,
bool inLocalValues = true,
bool listen = true}) {
final vk = XKey<T>(key);
final f = _find<T>(vk);
if (listen && f is Listenable) {
addToListenableSingleMarkNeedsBuildListener(f);
}
return f;
}