InAppLocalhostServer constructor

InAppLocalhostServer({
  1. int port = 8080,
  2. String directoryIndex = 'index.html',
  3. String documentRoot = './',
  4. bool shared = false,
})
  • port represents the port of the server. The default value is 8080.

  • directoryIndex represents the index file to use. The default value is index.html.

  • documentRoot represents the document root path to serve. The default value is ./.

  • The optional argument shared specifies whether additional HttpServer objects can bind to the same combination of address, port and v6Only. If shared is true and more HttpServers from this isolate or other isolates are bound to the port, then the incoming connections will be distributed among all the bound HttpServers. Connections can be distributed over multiple isolates this way.

Implementation

InAppLocalhostServer({
  int port = 8080,
  String directoryIndex = 'index.html',
  String documentRoot = './',
  bool shared = false,
}) {
  this._port = port;
  this._directoryIndex = directoryIndex;
  this._documentRoot =
      (documentRoot.endsWith('/')) ? documentRoot : '$documentRoot/';
  this._shared = shared;
}