resetWindowTitle static method

Future<void> resetWindowTitle()

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> resetWindowTitle() {
  return _kChannel.invokeMethod(
    _kResetWindowTitle,
    {},
  );
}