readonly property
Implementation
bool get readonly => getAttribute('readonly') != null;
set
readonly
(dynamic value)
inherited
Implementation
set readonly(value) {
internalSetAttribute('readonly', value?.toString() ?? '');
}