copyWith method

BusinessFeaturePromotionAnimation copyWith({
  1. BusinessFeature? feature,
  2. Animation? animation,
})

Implementation

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