checked property

bool get checked

Implementation

bool get checked => js_util.getProperty(this, 'checked');
set checked (bool newValue)

Implementation

set checked(bool newValue) {
  js_util.setProperty(this, 'checked', newValue);
}