changeSubscriptionPlan method

  1. @override
void changeSubscriptionPlan(
  1. String planId
)
override

Implementation

@override
void changeSubscriptionPlan(String planId) {
  AppConfig.logger.d("Changing Subscription PLan to: $planId");

  if(selectedPlan.price != null) {
    _selectedPlan = _subscriptionPlans[planId]!;
    _selectedPlanName.value = selectedPlan.name;
    _selectedPlanImgUrl.value = selectedPlan.imgUrl;
    _selectedPrice.value = selectedPlan.price!;
  }

  update();
}