setWindowTitle static method

Future<void> setWindowTitle(
  1. String title
)

Resets (hides) overlay icon that set by setOverlayIcon

Generally used to indicate current app state e.g. count of unread messages.

Implementation

static Future<void> setWindowTitle(String title) {
  return _kChannel.invokeMethod(
    _kSetWindowTitle,
    {
      'title': title,
    },
  );
}