ResourceUsage constructor

const ResourceUsage({
  1. String cpu = 'low',
  2. String memory = 'low',
  3. String network = 'low',
  4. String disk = 'low',
})

Implementation

const ResourceUsage({
  this.cpu = 'low',
  this.memory = 'low',
  this.network = 'low',
  this.disk = 'low',
});