getLocalChromeExecutablePath static method

String getLocalChromeExecutablePath()

Implementation

static String getLocalChromeExecutablePath() {
  final platform = BrowserPlatform.current;
  return io.Directory(ChromeInfoConfig.getExecutablePath(
          p.joinAll([localChromeDirectory, lastVersion]), platform))
      .absolute
      .path;
}