Bind<T> constructor

const Bind<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
    )?,
})

Implementation

const Bind({
  Key? key,
  required this.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);