JsonCheckboxBuilder constructor

const JsonCheckboxBuilder({
  1. Color? activeColor,
  2. required bool autofocus,
  3. AutovalidateMode? autovalidateMode,
  4. Color? checkColor,
  5. required bool enabled,
  6. MaterialStateProperty<Color?>? fillColor,
  7. Color? focusColor,
  8. FocusNode? focusNode,
  9. Color? hoverColor,
  10. required bool isError,
  11. String? label,
  12. MaterialTapTargetSize? materialTapTargetSize,
  13. MouseCursor? mouseCursor,
  14. ValueChanged<bool?>? onChanged,
  15. ValueChanged<bool?>? onSaved,
  16. MaterialStateProperty<Color?>? overlayColor,
  17. OutlinedBorder? shape,
  18. BorderSide? side,
  19. double? splashRadius,
  20. required bool tristate,
  21. Validator? validator,
  22. bool? value,
  23. VisualDensity? visualDensity,
})

Implementation

const JsonCheckboxBuilder({
  this.activeColor,
  required this.autofocus,
  this.autovalidateMode,
  this.checkColor,
  required this.enabled,
  this.fillColor,
  this.focusColor,
  this.focusNode,
  this.hoverColor,
  required this.isError,
  this.label,
  this.materialTapTargetSize,
  this.mouseCursor,
  this.onChanged,
  this.onSaved,
  this.overlayColor,
  this.shape,
  this.side,
  this.splashRadius,
  required this.tristate,
  this.validator,
  this.value,
  this.visualDensity,
}) : super(numSupportedChildren: kNumSupportedChildren);