ChannelSnapshot constructor

const ChannelSnapshot({
  1. int sent = 0,
  2. int recv = 0,
  3. int dropped = 0,
  4. int closed = 0,
  5. int trySendOk = 0,
  6. int trySendFail = 0,
  7. int tryRecvOk = 0,
  8. int tryRecvEmpty = 0,
  9. double? sendP50,
  10. double? sendP95,
  11. double? sendP99,
  12. double? recvP50,
  13. double? recvP95,
  14. double? recvP99,
  15. int recvFirstNs = 0,
  16. int recvLastNs = 0,
  17. int sendFirstNs = 0,
  18. int sendLastNs = 0,
})

Implementation

const ChannelSnapshot({
  this.sent = 0,
  this.recv = 0,
  this.dropped = 0,
  this.closed = 0,
  this.trySendOk = 0,
  this.trySendFail = 0,
  this.tryRecvOk = 0,
  this.tryRecvEmpty = 0,
  this.sendP50,
  this.sendP95,
  this.sendP99,
  this.recvP50,
  this.recvP95,
  this.recvP99,
  this.recvFirstNs = 0,
  this.recvLastNs = 0,
  this.sendFirstNs = 0,
  this.sendLastNs = 0,
});