checked property
bool?
get
checked
The initial state of a checkbox or radio button: true
for selected,
false
for unselected. Only one radio button can be selected at a time in
a given group.
Implementation
bool? get checked => _wrapped.checked;
set
checked
(bool? v)
Implementation
set checked(bool? v) {
_wrapped.checked = v;
}