ProcessMemoryItem constructor

ProcessMemoryItem(
  1. {String? name,
  2. String? description,
  3. int? size,
  4. List<ProcessMemoryItem>? children}
)

Implementation

ProcessMemoryItem({
  this.name,
  this.description,
  this.size,
  this.children,
});