Checkbox constructor Null safety
- {Key? key,
- required bool? value,
- bool tristate = false,
- required ValueChanged<
bool?> ? onChanged, - MouseCursor? mouseCursor,
- Color? activeColor,
- MaterialStateProperty<
Color?> ? fillColor, - Color? checkColor,
- Color? focusColor,
- Color? hoverColor,
- MaterialStateProperty<
Color?> ? overlayColor, - double? splashRadius,
- MaterialTapTargetSize? materialTapTargetSize,
- VisualDensity? visualDensity,
- FocusNode? focusNode,
- bool autofocus = false,
- OutlinedBorder? shape,
- BorderSide? side}
Creates a Material Design checkbox.
The checkbox itself does not maintain any state. Instead, when the state of
the checkbox changes, the widget calls the onChanged callback. Most
widgets that use a checkbox will listen for the onChanged callback and
rebuild the checkbox with a new value
to update the visual appearance of
the checkbox.
The following arguments are required:
Implementation
const Checkbox({
super.key,
required this.value,
this.tristate = false,
required this.onChanged,
this.mouseCursor,
this.activeColor,
this.fillColor,
this.checkColor,
this.focusColor,
this.hoverColor,
this.overlayColor,
this.splashRadius,
this.materialTapTargetSize,
this.visualDensity,
this.focusNode,
this.autofocus = false,
this.shape,
this.side,
}) : assert(tristate != null),
assert(tristate || value != null),
assert(autofocus != null);