tooltipRef property
The element at which this tooltip is targeted.
Implementation
@Input('for')
set tooltipRef(TooltipTarget? target) {
if (target == null) return;
_tooltipSource = target;
target.setTooltip(tooltipHandle);
}
The element at which this tooltip is targeted.
@Input('for')
set tooltipRef(TooltipTarget? target) {
if (target == null) return;
_tooltipSource = target;
target.setTooltip(tooltipHandle);
}