link property Null safety
If non-null, sets the SemanticsConfiguration.isLink semantic to the given value.
Implementation
bool? get link => _link;
Implementation
set link(bool? value) {
if (link == value)
return;
_link = value;
markNeedsSemanticsUpdate();
}