kill method
Force kill the server. Returns exit code future.
Implementation
@override
Future<int> kill({String reason = 'none'}) {
listener?.killingServerProcess(reason);
final process = _process!;
_process = null;
process.kill();
return process.exitCode;
}