setWindowBackgroundColorToDefaultColor static method

Future<void> setWindowBackgroundColorToDefaultColor()

Sets the window background color to the default (opaque) window color.

This method mainly affects the window's titlebar.

Implementation

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