showIcon method

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

Displays a tray icon.

This is the opposite of hideIcon.

Implementation

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