MemInfo constructor

MemInfo({
  1. String? currentLimitBytes,
  2. String? currentRssBytes,
  3. String? timestamp,
  4. String? totalGbMs,
})

Implementation

MemInfo({
  this.currentLimitBytes,
  this.currentRssBytes,
  this.timestamp,
  this.totalGbMs,
});