stopExisting static method
Stop any existing server process.
Implementation
static Future<void> stopExisting() async {
if (PlatformInfo.isWindows) {
await _stopWindows();
} else {
await _stopUnix();
}
}
Stop any existing server process.
static Future<void> stopExisting() async {
if (PlatformInfo.isWindows) {
await _stopWindows();
} else {
await _stopUnix();
}
}