stopVm function
Implementation
Future<void> stopVm(VirtualMachine? vm) async {
if (vm == null) return;
try {
await vm.stop();
} catch (_) {}
}
Future<void> stopVm(VirtualMachine? vm) async {
if (vm == null) return;
try {
await vm.stop();
} catch (_) {}
}