DispatchMetrics constructor

DispatchMetrics(
  1. String id, {
  2. int userException = 0,
  3. int size = 0,
  4. int replySize = 0,
})

Implementation

DispatchMetrics(
  String id, {
  this.userException = 0,
  this.size = 0,
  this.replySize = 0,
}) : super(id);