copyWith method

PremiumFeaturePromotionAnimation copyWith({
  1. PremiumFeature? feature,
  2. Animation? animation,
})

Implementation

PremiumFeaturePromotionAnimation copyWith({
  PremiumFeature? feature,
  Animation? animation,
}) =>
    PremiumFeaturePromotionAnimation(
      feature: feature ?? this.feature,
      animation: animation ?? this.animation,
    );