isReadOnly property
Whether the owning RenderObject is read only.
Only applicable when isTextField is true.
Implementation
bool get isReadOnly => _flags.isReadOnly;
Implementation
set isReadOnly(bool value) {
_flags = _flags.copyWith(isReadOnly: value);
_hasBeenAnnotated = true;
}