checkbox property
Checkbox
get
checkbox
Implementation
Checkbox get checkbox => _checkbox ??= Checkbox(
key: Key('Checkbox$_key'),
value: _checkValue,
tristate: tristate!,
// ignore: avoid_positional_boolean_parameters
onChanged: toggle as void Function(bool?)? ??
// ignore: avoid_positional_boolean_parameters
onToggle as void Function(bool?)?,
activeColor: activeColor,
fillColor: fillColor,
checkColor: checkColor,
focusColor: focusColor,
hoverColor: hoverColor,
overlayColor: overlayColor,
splashRadius: splashRadius,
materialTapTargetSize: materialTapTargetSize,
visualDensity: visualDensity,
focusNode: focusNode,
autofocus: autofocus!,
shape: outlineShape,
side: side,
isError: isError!,
);