ProfileNode constructor

ProfileNode({
  1. required int id,
  2. required CallFrame callFrame,
  3. int? hitCount,
  4. List<int>? children,
  5. String? deoptReason,
  6. List<PositionTickInfo>? positionTicks,
})

Implementation

ProfileNode({
  required this.id,
  required this.callFrame,
  this.hitCount,
  this.children,
  this.deoptReason,
  this.positionTicks,
});