GBind<T> constructor

const GBind<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. ValueChanged<GBindElement<T>>? initState,
  8. Object filter(
    1. T value
    )?,
  9. String? tag,
  10. ValueChanged<GBindElement<T>>? dispose,
  11. Object? id,
  12. ValueChanged<GBindElement<T>>? didChangeDependencies,
  13. DidUpdateWidgetCallback<T>? didUpdateWidget,
})

Implementation

const GBind({
  super.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,
});