ConnectionMetrics constructor

ConnectionMetrics(
  1. String id, {
  2. int receivedBytes = 0,
  3. int sentBytes = 0,
})

Implementation

ConnectionMetrics(String id, {this.receivedBytes = 0, this.sentBytes = 0})
    : super(id);