toggleable property
Set to true if this radio list tile is allowed to be returned to an indeterminate state by selecting it again when selected.
To indicate returning to an indeterminate state, onChanged will be called with null.
If true, RadioGroup.onChanged is called with value when selected while RadioGroup.groupValue != value, and with null when selected again while RadioGroup.groupValue == value.
If false, RadioGroup.onChanged will be called with value when it is selected while groupValue != value, and only by selecting another radio button in the group (i.e. changing the value of RadioGroup.groupValue) can this radio list tile be unselected.
The default is false.
To create a local project with this code sample, run:
flutter create --sample=material.RadioListTile.toggleable.1 mysample
Implementation
final bool toggleable;