RxFormFieldBuilder<B extends RxBlocTypeBase, T> constructor
const
RxFormFieldBuilder<B extends RxBlocTypeBase, T> ({
- required RxFormFieldState<
B, T> state, - required RxFormFieldShowError<
B> showErrorState, - required RxFormFieldBuilderFunction<
B, T> builder, - B? bloc,
- Key? key,
The default constructor
Implementation
const RxFormFieldBuilder({
required this.state,
required this.showErrorState,
required this.builder,
this.bloc,
Key? key,
}) : super(key: key);