showZoomButton static method

Future<void> showZoomButton()

Shows the window's zoom button.

The zoom button is visible by default.

Implementation

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