CircularCheckboxFieldBlocBuilder constructor

const CircularCheckboxFieldBlocBuilder({
  1. Key? key,
  2. required BooleanFieldBloc? booleanFieldBloc,
  3. FocusNode? nextFocusNode,
  4. bool? animateWhenCanShow,
  5. bool isEnabled = true,
  6. Color? checkColor,
  7. Color? activeColor,
  8. FieldBlocErrorBuilder? errorBuilder,
  9. FieldBlocBuilderControlAffinity controlAffinity = FieldBlocBuilderControlAffinity.leading,
  10. EdgeInsets? padding,
  11. required Widget body,
})

Implementation

const CircularCheckboxFieldBlocBuilder({
  Key? key,
  required this.booleanFieldBloc,
  this.nextFocusNode,
  this.animateWhenCanShow,
  this.isEnabled = true,
  this.checkColor,
  this.activeColor,
  this.errorBuilder,
  this.controlAffinity = FieldBlocBuilderControlAffinity.leading,
  this.padding,
  required this.body,
}) : super(key: key);