PremiumFeaturePromotionAnimation.fromJson constructor
Parse from a json
Implementation
factory PremiumFeaturePromotionAnimation.fromJson(
        Map<String, dynamic> json) =>
    PremiumFeaturePromotionAnimation(
      feature: PremiumFeature.fromJson(json['feature']),
      animation: Animation.fromJson(json['animation']),
    );