find<T> method
T?
find<T>(
- dynamic key
Returns the observable
Implementation
T? find<T>(dynamic key) =>
(_container[key] ?? (_overrides[key] == null ? parent?.find(key) : null))
as T?;