NotifierBinding<T> constructor
NotifierBinding<T> ({
- required Binding<
T> binding, - required ChangeNotifier notifier,
- required VoidCallback notifyListener,
- required VoidCallback onChange,
Implementation
NotifierBinding({
required this.binding,
required this.notifier,
required this.notifyListener,
required this.onChange,
}) {
notifier.addListener(notifyListener);
}