ProcessMemoryItem class Null safety

Constructors

ProcessMemoryItem({String? name, String? description, int? size, List<ProcessMemoryItem>? children})

Properties

children List<ProcessMemoryItem>?
Subdivisons of this bucket of memory.
read / write
description String?
A longer description for this item.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
name String?
A short name for this bucket of memory.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
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.
read / write

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent 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?