checked property

bool get checked

Implementation

bool get checked => hasAttribute('checked');
set checked (bool value)

Implementation

set checked(bool value) {
  if (value) {
    internalSetAttribute('checked', '');
  } else {
    removeAttribute('checked');
  }
}