ServerConfig constructor

ServerConfig({
  1. required TransportType transport,
  2. required String host,
  3. required int port,
  4. required String path,
  5. required bool verbose,
  6. required bool help,
})

Implementation

ServerConfig({
  required this.transport,
  required this.host,
  required this.port,
  required this.path,
  required this.verbose,
  required this.help,
});