CheckboxFieldBlocBuilder<T extends FormBloc> constructor

const CheckboxFieldBlocBuilder<T extends FormBloc>({
  1. Key? key,
  2. required String fieldName,
  3. required Widget body,
  4. CheckboxPosition checkboxPosition = CheckboxPosition.prefix,
})

Implementation

const CheckboxFieldBlocBuilder({
  Key? key,
  required this.fieldName,
  required this.body,
  this.checkboxPosition = CheckboxPosition.prefix,
}) : super(key: key);