bringToFront method

Future bringToFront()

Implementation

Future bringToFront() async {
  if (Platform.isWindows || Platform.isMacOS || Platform.isLinux) {
    await windowManager.show();
    await windowManager.focus();
  }
}