Whether this rendering object is read only.
bool get readOnly => _readOnly;
set readOnly(bool value) { if (_readOnly == value) { return; } _readOnly = value; markNeedsSemanticsUpdate(); }