isVidenaInstalledWindows function
Implementation
bool isVidenaInstalledWindows() {
  if (!File(
          path.join(path.dirname(Platform.resolvedExecutable), 'libvidena.dll'))
      .existsSync()) {
    return false;
  }
  return true;
}
bool isVidenaInstalledWindows() {
  if (!File(
          path.join(path.dirname(Platform.resolvedExecutable), 'libvidena.dll'))
      .existsSync()) {
    return false;
  }
  return true;
}