value property

bool? value
final
  • value == true -> checkbox is selected
  • value == false -> checkbox is not selected
  • value == null -> checkbox indeterminate

! Changing this value at runtime will change the internal value, BUT the actual internal value can be different In fact, this widget is autonomus and can be used even providing only the inial value

Default to false

Implementation

final bool? value;