setWindowResizability function

Future setWindowResizability(
  1. bool resizable
)

Implementation

Future setWindowResizability(bool resizable) async {
  if (isDesktopPlatform()) {
    debugPrint("setWindowResizability($resizable)");
    await windowManager.setResizable(resizable);
  }
}