CpuSamples constructor Null safety

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

Implementation

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