uncheck method
void
uncheck()
Sets the checkbox state to unchecked.
Notifies listeners of the state change. Equivalent to setting
value = CheckboxState.unchecked
.
Implementation
void uncheck() {
value = CheckboxState.unchecked;
}