stopExisting static method

Future<void> stopExisting()

Stop any existing server process.

Implementation

static Future<void> stopExisting() async {
  if (PlatformInfo.isWindows) {
    await _stopWindows();
  } else {
    await _stopUnix();
  }
}