ClassHeapStats class Null safety

Inheritance

Constructors

ClassHeapStats({ClassRef? classRef, int? accumulatedSize, int? bytesCurrent, int? instancesAccumulated, int? instancesCurrent})

Properties

accumulatedSize int?
The number of bytes allocated for instances of class since the accumulator was last reset.
read / write
bytesCurrent int?
The number of bytes currently allocated for instances of class.
read / write
classRef ClassRef?
The class for which this memory information is associated.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
instancesAccumulated int?
The number of instances of class which have been allocated since the accumulator was last reset.
read / write
instancesCurrent int?
The number of instances of class which are currently alive.
read / write
json Map<String, dynamic>?
read / writeinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
type String
read-onlyoverride

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toJson() Map<String, dynamic>
override
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

parse(Map<String, dynamic>? json) ClassHeapStats?
override