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