ScopeStat constructor

const ScopeStat({
  1. int numStreamsInbound = 0,
  2. int numStreamsOutbound = 0,
  3. int numConnsInbound = 0,
  4. int numConnsOutbound = 0,
  5. int numFD = 0,
  6. int memory = 0,
})

Implementation

const ScopeStat({
  this.numStreamsInbound = 0,
  this.numStreamsOutbound = 0,
  this.numConnsInbound = 0,
  this.numConnsOutbound = 0,
  this.numFD = 0,
  this.memory = 0,
});