ServerSettings constructor

const ServerSettings({
  1. int? concurrentStreamLimit,
  2. int? streamWindowSize,
})

Implementation

const ServerSettings({int? concurrentStreamLimit, int? streamWindowSize})
    : super(
          concurrentStreamLimit: concurrentStreamLimit,
          streamWindowSize: streamWindowSize);