minimize method

Future<void> minimize()

Minimizes the window. On some platforms the minimized window will be shown in the Dock.

Implementation

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