DevOptions constructor

const DevOptions({
  1. String host = '127.0.0.1',
  2. int port = 8080,
  3. String entry = 'bin/server.dart',
  4. List<String> watch = const [],
  5. bool verbose = false,
})

Implementation

const DevOptions({
  this.host = '127.0.0.1',
  this.port = 8080,
  this.entry = 'bin/server.dart',
  this.watch = const [],
  this.verbose = false,
});