windowUnLock method

Future<void> windowUnLock()

Implementation

Future<void> windowUnLock() async {
  try {
    await _windowLockablePlugin.setWindowUnlock();
  } on PlatformException catch (e) {
    log("Failed : ${e.message}");
  }
}