ServeConfig constructor

ServeConfig({
  1. int port = 4040,
  2. int websocketPort = 4041,
  3. bool verbose = false,
})

Implementation

ServeConfig({
  this.port = 4040,
  this.websocketPort = 4041,
  this.verbose = false,
}) : baseUrl = Uri(host: '127.0.0.1', scheme: 'http', port: port);