ClientSettings constructor

const ClientSettings({
  1. int? concurrentStreamLimit,
  2. int? streamWindowSize,
  3. bool allowServerPushes = false,
})

Implementation

const ClientSettings(
    {int? concurrentStreamLimit,
    int? streamWindowSize,
    this.allowServerPushes = false})
    : super(
          concurrentStreamLimit: concurrentStreamLimit,
          streamWindowSize: streamWindowSize);