isLink property
Whether the owning RenderObject is a link (true) or not (false).
Implementation
bool get isLink => _flags.isLink;
Implementation
set isLink(bool value) {
_flags = _flags.copyWith(isLink: value);
_hasBeenAnnotated = true;
}
Whether the owning RenderObject is a link (true) or not (false).
bool get isLink => _flags.isLink;
set isLink(bool value) {
_flags = _flags.copyWith(isLink: value);
_hasBeenAnnotated = true;
}