removeTooltip method

  1. @protected
Future<void> removeTooltip(
  1. Id id
)

Removes the icon's tooltip.

This is the opposite of setTooltip.

Implementation

@protected
Future<void> removeTooltip(Id id) async {
  await _channel.invokeMethod('removeTooltip', {'id': id});
}