setDesktopMinWindowSize function
Implementation
Future<void> setDesktopMinWindowSize(Size size) async {
if (!supportPlatformDesktop) return;
curiosityChannel.invokeMethod<dynamic>('setMinWindowSize',
<String, double>{'width': size.width, 'height': size.height});
}