value property

bool get value

Whether the checkbox is currently checked.

Implementation

bool get value => _value;
set value (bool v)

Sets the checked state and invalidates the paint cache.

Implementation

set value(bool v) {
  _value = v;
  _invalidateCache();
}