Source
factory HttpBootstrapper({
String host: 'localhost',
int port: 1337,
PipelineFactory pipeline
}) {
return new HttpBootstrapper.internal(
HttpServer.bind,
host,
port,
pipeline
);
}
factory HttpBootstrapper({
String host: 'localhost',
int port: 1337,
PipelineFactory pipeline
}) {
return new HttpBootstrapper.internal(
HttpServer.bind,
host,
port,
pipeline
);
}