HttpBootstrapper({String host: 'localhost', int port: 1337, PipelineFactory pipeline([IoCContainer container])})

Source

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