MemoryMetrics constructor

MemoryMetrics({
  1. String? totalOffHeapStorageMemory,
  2. String? totalOnHeapStorageMemory,
  3. String? usedOffHeapStorageMemory,
  4. String? usedOnHeapStorageMemory,
})

Implementation

MemoryMetrics({
  this.totalOffHeapStorageMemory,
  this.totalOnHeapStorageMemory,
  this.usedOffHeapStorageMemory,
  this.usedOnHeapStorageMemory,
});