ChannelSnapshot constructor
      const
      ChannelSnapshot({ 
    
    
- int sent = 0,
- int recv = 0,
- int dropped = 0,
- int closed = 0,
- int trySendOk = 0,
- int trySendFail = 0,
- int tryRecvOk = 0,
- int tryRecvEmpty = 0,
- double? sendP50,
- double? sendP95,
- double? sendP99,
- double? recvP50,
- double? recvP95,
- double? recvP99,
- int recvFirstNs = 0,
- int recvLastNs = 0,
- int sendFirstNs = 0,
- 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,
});