tooltip property

String get tooltip

The tooltip text when you hover over this link.

If a tooltip is provided, is will be displayed in a string that includes instructions on how to trigger the link, such as {0} (ctrl + click). The specific instructions vary depending on OS, user settings, and localization.

Implementation

_i2.String get tooltip => _i5.getProperty(
      this,
      'tooltip',
    );
set tooltip (String value)

Implementation

set tooltip(_i2.String value) {
  _i5.setProperty(
    this,
    'tooltip',
    value,
  );
}