addTray method

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

Creates a new tray icon.

This is the opposite of disposeTray.

Implementation

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