PremiumFeaturePromotionAnimation.fromJson constructor

PremiumFeaturePromotionAnimation.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

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