blur method

Future<void> blur()

Removes focus from the window.

@platforms macos,windows

Implementation

Future<void> blur() async {
  await _channel.invokeMethod('blur');
}