CheckboxFieldBlocBuilder constructor

const CheckboxFieldBlocBuilder({
  1. Key? key,
  2. required BooleanFieldBloc booleanFieldBloc,
  3. required Widget body,
  4. bool enableOnlyWhenFormBlocCanSubmit = false,
  5. bool isEnabled = true,
  6. FieldBlocErrorBuilder? errorBuilder,
  7. EdgeInsetsGeometry? padding,
  8. AlignmentGeometry alignment = AlignmentDirectional.centerStart,
  9. FocusNode? nextFocusNode,
  10. bool animateWhenCanShow = true,
  11. TextStyle? textStyle,
  12. MaterialStateProperty<Color?>? textColor,
  13. FieldBlocBuilderControlAffinity? controlAffinity,
  14. MaterialStateProperty<MouseCursor?>? mouseCursor,
  15. MaterialStateProperty<Color?>? fillColor,
  16. MaterialStateProperty<Color?>? checkColor,
  17. MaterialStateProperty<Color?>? overlayColor,
  18. double? splashRadius,
  19. OutlinedBorder? shape,
  20. BorderSide? side,
})

Implementation

const CheckboxFieldBlocBuilder({
  Key? key,
  required this.booleanFieldBloc,
  required this.body,
  this.enableOnlyWhenFormBlocCanSubmit = false,
  this.isEnabled = true,
  this.errorBuilder,
  this.padding,
  this.alignment = AlignmentDirectional.centerStart,
  this.nextFocusNode,
  this.animateWhenCanShow = true,
  this.textStyle,
  this.textColor,
  this.controlAffinity,
  this.mouseCursor,
  this.fillColor,
  this.checkColor,
  this.overlayColor,
  this.splashRadius,
  this.shape,
  this.side,
}) : super(key: key);