find<T> method

T? find<T>(
  1. dynamic key
)

Returns the observable

Implementation

T? find<T>(dynamic key) =>
    (_container[key] ?? (_overrides[key] == null ? parent?.find(key) : null))
        as T?;