CpuSample constructor

CpuSample({
  1. int? tid,
  2. int? timestamp,
  3. List<int>? stack,
  4. String? vmTag,
  5. String? userTag,
  6. bool? truncated,
  7. int? identityHashCode,
  8. int? classId,
})

Implementation

CpuSample({
  this.tid,
  this.timestamp,
  this.stack,
  this.vmTag,
  this.userTag,
  this.truncated,
  this.identityHashCode,
  this.classId,
});