LocalServer constructor

LocalServer(
  1. String path, {
  2. String address = '127.0.0.1',
  3. int port = 4040,
  4. int websocketPort = 4041,
  5. required Stream<void> onReload,
})

Implementation

LocalServer(
  this.path, {
  this.address = '127.0.0.1',
  this.port = 4040,
  this.websocketPort = 4041,
  required this.onReload,
});