start method
Start listening for IDE connections.
Implementation
Future<void> start() async {
_httpServer = await HttpServer.bind(host, port);
_httpServer!.listen(_handleHttpRequest);
}
Start listening for IDE connections.
Future<void> start() async {
_httpServer = await HttpServer.bind(host, port);
_httpServer!.listen(_handleHttpRequest);
}