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. bool lazy = true,
  8. void initState(
    1. BindElement<T> state
    )?,
  9. Object filter(
    1. T value
    )?,
  10. String? tag,
  11. void dispose(
    1. BindElement<T> state
    )?,
  12. Object? id,
  13. void didChangeDependencies(
    1. BindElement<T> state
    )?,
  14. void didUpdateWidget(
    1. Binder<T> oldWidget,
    2. BindElement<T> state
    )?,
  15. InstanceCreateBuilderCallback? create,
})

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

The child argument is required

Implementation

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