RxFormFieldBuilder<B extends RxBlocTypeBase, T> constructor

const RxFormFieldBuilder<B extends RxBlocTypeBase, T>({
  1. required RxFormFieldState<B, T> state,
  2. required RxFormFieldShowError<B> showErrorState,
  3. required RxFormFieldBuilderFunction<B, T> builder,
  4. B? bloc,
  5. Key? key,
})

The default constructor

Implementation

const RxFormFieldBuilder({
  required this.state,
  required this.showErrorState,
  required this.builder,
  this.bloc,
  Key? key,
}) : super(key: key);