setTitle method

Future<void> setTitle(
  1. String title
)

(macOS) Sets the title displayed next to the tray icon in the status bar.

Implementation

Future<void> setTitle(String title) async {
  await setSystemTrayInfo(title: title);
}