Server constructor

Server({
  1. ServerListener? listener,
  2. Process? process,
  3. bool stdioPassthrough = false,
})

Implementation

Server(
    {ServerListener? listener,
    Process? process,
    bool stdioPassthrough = false})
    : _process = process,
      super(listener: listener, stdioPassthrough: stdioPassthrough);