CpuSamplesEvent constructor

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

Implementation

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