select<T> method

ChangeNotifierSelector<T, D> select<T>(
  1. ShouldNotify<T, D> notifyValue, {
  2. Object? key,
})

Implementation

ChangeNotifierSelector<T, D> select<T>(ShouldNotify<T, D> notifyValue,
    {Object? key}) {
  return ChangeNotifierSelector(parent: this, notifyValue: notifyValue);
}