ClassHeapStats constructor Null safety

ClassHeapStats(
  1. {ClassRef? classRef,
  2. int? accumulatedSize,
  3. int? bytesCurrent,
  4. int? instancesAccumulated,
  5. int? instancesCurrent}
)

Implementation

ClassHeapStats({
  this.classRef,
  this.accumulatedSize,
  this.bytesCurrent,
  this.instancesAccumulated,
  this.instancesCurrent,
});