readonly property

bool get readonly
inherited

Implementation

bool get readonly => getAttribute('readonly') != null;
set readonly (dynamic value)
inherited

Implementation

set readonly(value) {
  internalSetAttribute('readonly', value?.toString() ?? '');
}