setWindowBounds method
Implementation
@override
Future<void> setWindowBounds(
String windowId, {
required int x,
required int y,
required int width,
required int height,
}) {
return methodChannel.invokeMethod('setWindowBounds', {
'windowId': windowId,
'x': x.toDouble(),
'y': y.toDouble(),
'width': width.toDouble(),
'height': height.toDouble(),
});
}