setWindowSize method
Sets the window size.
width: The target width.height: The target height.radius: The target radius.
Implementation
@override
Future<void> setWindowSize(double width, double height, {double radius = 10}) async {
await methodChannel.invokeMethod<void>('setWindowSize', {
'width': width,
'height': height,
'radius': radius,
});
}