invalidateShadows static method

Future<void> invalidateShadows()

Invalidates the window's shadow.

This is a fairly technical method and is included here for completeness' sake. Normally, it should not be necessary to use it.

Implementation

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