ProcessMetrics constructor

const ProcessMetrics({
  1. required double uptime,
  2. required int rss,
  3. required int heapTotal,
  4. required int heapUsed,
  5. int external = 0,
  6. int arrayBuffers = 0,
})

Implementation

const ProcessMetrics({
  required this.uptime,
  required this.rss,
  required this.heapTotal,
  required this.heapUsed,
  this.external = 0,
  this.arrayBuffers = 0,
});