ProcessMemoryItem class
Constructors
-
ProcessMemoryItem({String? name, String? description, int? size, List<
ProcessMemoryItem> ? children})
Properties
-
children
↔ List<
ProcessMemoryItem> ? -
Subdivisions of this bucket of memory.
getter/setter pair
- description ↔ String?
-
A longer description for this item.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- name ↔ String?
-
A short name for this bucket of memory.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- size ↔ int?
-
The amount of memory in bytes. This is a retained size, not a shallow
size. That is, it includes the size of children.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
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) → ProcessMemoryItem?