disabled property

bool disabled

Implementation

bool get disabled => hasAttribute('disabled');
void disabled=(bool value)

Implementation

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