copyWith method
UpgradedGiftSymbol
copyWith({
- String? name,
- Sticker? sticker,
- UpgradedGiftAttributeRarity? rarity,
Implementation
UpgradedGiftSymbol copyWith({
String? name,
Sticker? sticker,
UpgradedGiftAttributeRarity? rarity,
}) => UpgradedGiftSymbol(
name: name ?? this.name,
sticker: sticker ?? this.sticker,
rarity: rarity ?? this.rarity,
);