PerformanceSample constructor

PerformanceSample({
  1. CpuUsageSample? cpu,
  2. DiskUsageSample? disk,
  3. MemoryUsageSample? memory,
  4. NetworkUsageSample? network,
  5. String? sampleTime,
})

Implementation

PerformanceSample({
  this.cpu,
  this.disk,
  this.memory,
  this.network,
  this.sampleTime,
});