copyWith method

Implementation

UpgradedGiftBackdrop copyWith({
  int? id,
  String? name,
  UpgradedGiftBackdropColors? colors,
  UpgradedGiftAttributeRarity? rarity,
}) => UpgradedGiftBackdrop(
  id: id ?? this.id,
  name: name ?? this.name,
  colors: colors ?? this.colors,
  rarity: rarity ?? this.rarity,
);