setWindowMaxSize method
setWindowMaxSize Set the maximum window size.
Implementation
@override
Future<void> setWindowMaxSize(Size size) async {
await methodChannel.invokeMethod(setWindowMaxSizeMethod, <String, dynamic>{
'dpr': window.devicePixelRatio,
'width': size.width,
'height': size.height,
});
}