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