show method

Future<void> show()

Shows the icon in the system tray.

Implementation

Future<void> show() async {
  _ensureIsActive();
  if (_isVisible) return;
  await _ensureIsReal();
  await _plugin.showIcon(_id);
  _isVisible = true;
}