attachToHttpServer static method
Implementation
static Engine attachToHttpServer(
StreamController<HttpRequest> httpServerStream,
[Map? options]) {
var engine = Server(options);
engine.attachToHttpServer(httpServerStream, options);
return engine;
}