ClientSettings constructor

const ClientSettings({int concurrentStreamLimit, int streamWindowSize, bool allowServerPushes: false })

Implementation

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