enableZoomButton static method

Future<void> enableZoomButton()

Enables the window's zoom button.

The zoom button is enabled by default.

Implementation

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