copyWith method

Implementation

GiftUpgradeVariants copyWith({
  List<UpgradedGiftModel>? models,
  List<UpgradedGiftSymbol>? symbols,
  List<UpgradedGiftBackdrop>? backdrops,
}) => GiftUpgradeVariants(
  models: models ?? this.models,
  symbols: symbols ?? this.symbols,
  backdrops: backdrops ?? this.backdrops,
);