currentToolTip property

dynamic currentToolTip

This read-only property returns the currently showing tooltip, or null if there is none.

Implementation

_i2.dynamic get currentToolTip => _i4.getProperty(
      this,
      'currentToolTip',
    );
void currentToolTip=(dynamic value)

Implementation

set currentToolTip(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'currentToolTip',
    value,
  );
}