setWindowMaxSize function
Implementation
Future setWindowMaxSize(double? maxWidth, double? maxHeight) async {
if (isDesktopPlatform()) {
debugPrint("setWindowMaxSize($maxWidth, $maxHeight)");
await windowManager.setMaximumSize(Size(maxWidth ?? -1, maxHeight ?? -1));
}
}