copyWith method
GiftUpgradePreview
copyWith({
- List<
UpgradedGiftModel> ? models, - List<
UpgradedGiftSymbol> ? symbols, - List<
UpgradedGiftBackdrop> ? backdrops, - List<
GiftUpgradePrice> ? prices, - List<
GiftUpgradePrice> ? nextPrices,
Implementation
GiftUpgradePreview copyWith({
List<UpgradedGiftModel>? models,
List<UpgradedGiftSymbol>? symbols,
List<UpgradedGiftBackdrop>? backdrops,
List<GiftUpgradePrice>? prices,
List<GiftUpgradePrice>? nextPrices,
}) => GiftUpgradePreview(
models: models ?? this.models,
symbols: symbols ?? this.symbols,
backdrops: backdrops ?? this.backdrops,
prices: prices ?? this.prices,
nextPrices: nextPrices ?? this.nextPrices,
);