hideCloseButton static method

Future<void> hideCloseButton()

Hides the window's close button.

Implementation

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