setWindowMinSize static method
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,
});
}