CupertinoCheckboxData constructor

const CupertinoCheckboxData({
  1. ValueChanged<bool?>? onChanged,
  2. bool? value,
  3. bool tristate = false,
  4. bool isEnabled = true,
  5. Key? widgetKey,
  6. MouseCursor? mouseCursor,
  7. Color? activeColor,
  8. WidgetStateProperty<Color?>? fillColor,
  9. Color? checkColor,
  10. Color? focusColor,
  11. FocusNode? focusNode,
  12. bool autofocus = kDefaultAutofocus,
  13. OutlinedBorder? shape,
  14. BorderSide? side,
  15. String? semanticLabel,
  16. Size? tapTargetSize,
})

Implementation

const CupertinoCheckboxData({
  super.onChanged,
  super.value,
  super.tristate,
  super.isEnabled,
  super.widgetKey,
  super.mouseCursor,
  super.activeColor,
  super.fillColor,
  super.checkColor,
  super.focusColor,
  super.focusNode,
  super.autofocus,
  super.shape,
  super.side,
  super.semanticLabel,
  this.tapTargetSize,
});