hideIcon method

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

Hides a tray icon.

This is the opposite of showIcon.

Implementation

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