InputBinding<T extends BindingModel> constructor

InputBinding<T extends BindingModel>({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. T model,
    3. Widget child
    ),
  3. bool listen = true,
  4. Widget? child,
})

Implementation

InputBinding({
  Key? key,
  required this.builder,
  this.listen = true,
  Widget? child,
}) : super(key: key, child: child);