isLink property

bool get isLink

Whether the owning RenderObject is a link (true) or not (false).

Implementation

bool get isLink => _flags.isLink;
set isLink (bool value)

Implementation

set isLink(bool value) {
  _flags = _flags.copyWith(isLink: value);
  _hasBeenAnnotated = true;
}