readOnly property Null safety
Whether this rendering object is read only.
Implementation
bool get readOnly => _readOnly;
Implementation
set readOnly(bool value) {
assert(value != null);
if (_readOnly == value) {
return;
}
_readOnly = value;
markNeedsSemanticsUpdate();
}