ValueListenableProvider<T> constructor
Implementation
ValueListenableProvider({
Key key,
@required ValueBuilder<ValueNotifier<T>> builder,
UpdateShouldNotify<T> updateShouldNotify,
Widget child,
}) : this._(
key: key,
delegate: BuilderStateDelegate<ValueNotifier<T>>(
builder,
dispose: _dispose,
),
updateShouldNotify: updateShouldNotify,
child: child,
);