value property
set
value
(bool v)
Sets the checked state and invalidates the paint cache.
Implementation
set value(bool v) {
if (_value == v) return;
_value = v;
_invalidateCache();
markNeedsPaint();
}