StructureBindingProvider constructor

const StructureBindingProvider({
  1. Key? key,
  2. required Widget child,
  3. required StructureBindingController controller,
  4. ValidationTrigger? validationTrigger,
  5. AnnotationTransformer? annotationTransformer,
})

Creates a new StructureBindingProvider with the given controller and child.

Implementation

const StructureBindingProvider({
  super.key,
  required super.child,
  required this.controller,
  this.validationTrigger,
  this.annotationTransformer,
});