acknowledgeMouseEvents static method

Future<void> acknowledgeMouseEvents()

Makes the window acknowledge mouse events.

This method can be used to make parts of the window click-through, which may be desirable when used in conjunction with makeWindowFullyTransparent().

Implementation

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