WorkerResource constructor

WorkerResource({
  1. double? cpu,
  2. int? maxCount,
  3. double? memoryGb,
  4. int? minCount,
  5. double? storageGb,
})

Implementation

WorkerResource({
  this.cpu,
  this.maxCount,
  this.memoryGb,
  this.minCount,
  this.storageGb,
});