toPricingPlan method

PricingPlan toPricingPlan()

Implementation

PricingPlan toPricingPlan() {
  switch (this) {
    case 'ON_DEMAND':
      return PricingPlan.onDemand;
    case 'RESERVED':
      return PricingPlan.reserved;
  }
  throw Exception('$this is not known in enum PricingPlan');
}