setWindowMinSize static method

Future<void> setWindowMinSize(
  1. Size size
)

Sets the minimum size for the window

Implementation

static Future<void> setWindowMinSize(Size size) async {
  await _completer.future;
  await _windowManipulatorMethodChannel.invokeMethod('setWindowMinSize', {
    'width': size.width,
    'height': size.height,
  });
}