Resources constructor

Resources({
  1. ResourcesCpu? cpu,
  2. ResourcesMemory? memory,
  3. String? startedAt,
  4. String? now,
  5. num? pid,
})

Returns a new Resources instance.

Implementation

Resources({
  this.cpu,
  this.memory,
  this.startedAt,
  this.now,
  this.pid,
});