JsonCheckboxBuilderModel constructor

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

Implementation

const JsonCheckboxBuilderModel(
  super.args, {
  this.activeColor,
  this.autofocus = false,
  this.autovalidateMode,
  this.checkColor,
  this.enabled = true,
  this.fillColor,
  this.focusColor,
  this.focusNode,
  this.hoverColor,
  this.isError = false,
  this.label,
  this.materialTapTargetSize,
  this.mouseCursor,
  this.onChanged,
  this.onSaved,
  this.overlayColor,
  this.shape,
  this.side,
  this.splashRadius,
  this.tristate = false,
  required this.validator,
  this.value,
  this.visualDensity,
});