Bundle constructor

Bundle({
  1. String? bundleId,
  2. int? cpuCount,
  3. int? diskSizeInGb,
  4. String? instanceType,
  5. bool? isActive,
  6. String? name,
  7. int? power,
  8. double? price,
  9. double? ramSizeInGb,
  10. List<InstancePlatform>? supportedPlatforms,
  11. int? transferPerMonthInGb,
})

Implementation

Bundle({
  this.bundleId,
  this.cpuCount,
  this.diskSizeInGb,
  this.instanceType,
  this.isActive,
  this.name,
  this.power,
  this.price,
  this.ramSizeInGb,
  this.supportedPlatforms,
  this.transferPerMonthInGb,
});