CpuSamples constructor

CpuSamples({
  1. int? samplePeriod,
  2. int? maxStackDepth,
  3. int? sampleCount,
  4. int? timeOriginMicros,
  5. int? timeExtentMicros,
  6. int? pid,
  7. List<ProfileFunction>? functions,
  8. List<CpuSample>? samples,
})

Implementation

CpuSamples({
  this.samplePeriod,
  this.maxStackDepth,
  this.sampleCount,
  this.timeOriginMicros,
  this.timeExtentMicros,
  this.pid,
  this.functions,
  this.samples,
});