isLink property

bool get isLink

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

Implementation

bool get isLink => _hasFlag(SemanticsFlag.isLink);
set isLink (bool value)

Implementation

set isLink(bool value) {
  _setFlag(SemanticsFlag.isLink, value);
}