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