hideTitle static method

Future<void> hideTitle()

Hides the titlebar of the window.

Implementation

static Future<void> hideTitle() async {
  await _completer.future;
  await _windowManipulatorMethodChannel.invokeMethod('hideTitle');
}