defaultChecked property

bool get defaultChecked

Sets or retrieves the state of the check box or radio button.

Implementation

_i2.bool get defaultChecked => _i4.getProperty(
      this,
      'defaultChecked',
    );
set defaultChecked (bool value)

Implementation

set defaultChecked(_i2.bool value) {
  _i4.setProperty(
    this,
    'defaultChecked',
    value,
  );
}