start method

Future<void> start()

Start listening for IDE connections.

Implementation

Future<void> start() async {
  _httpServer = await HttpServer.bind(host, port);
  _httpServer!.listen(_handleHttpRequest);
}