Binder<T> constructor

const Binder<T>({
  1. Key? key,
  2. required Widget child,
  3. InitBuilder<T>? init,
  4. bool global = true,
  5. bool autoRemove = true,
  6. bool assignId = false,
  7. void initState(
    1. BindElement<T> state
    )?,
  8. Object filter(
    1. T value
    )?,
  9. String? tag,
  10. void dispose(
    1. BindElement<T> state
    )?,
  11. Object? id,
  12. void didChangeDependencies(
    1. BindElement<T> state
    )?,
  13. void didUpdateWidget(
    1. Binder<T> oldWidget,
    2. BindElement<T> state
    )?,
})

Create an inherited widget that updates its dependents when controller sends notifications.

The child argument is required

Implementation

const Binder({
  Key? key,
  required Widget child,
  this.init,
  this.global = true,
  this.autoRemove = true,
  this.assignId = false,
  this.initState,
  this.filter,
  this.tag,
  this.dispose,
  this.id,
  this.didChangeDependencies,
  this.didUpdateWidget,
}) : super(key: key, child: child);