ThreadMetrics constructor

ThreadMetrics(
  1. String id, {
  2. int inUseForIO = 0,
  3. int inUseForUser = 0,
  4. int inUseForOther = 0,
})

Implementation

ThreadMetrics(String id,
    {this.inUseForIO = 0, this.inUseForUser = 0, this.inUseForOther = 0})
    : super(id);