ContainerServicePower constructor

ContainerServicePower({
  1. double? cpuCount,
  2. bool? isActive,
  3. String? name,
  4. String? powerId,
  5. double? price,
  6. double? ramSizeInGb,
})

Implementation

ContainerServicePower({
  this.cpuCount,
  this.isActive,
  this.name,
  this.powerId,
  this.price,
  this.ramSizeInGb,
});