copyWith method

GetUpgradedGiftVariants copyWith({
  1. int? regularGiftId,
  2. bool? returnUpgradeModels,
  3. bool? returnCraftModels,
})

Implementation

GetUpgradedGiftVariants copyWith({
  int? regularGiftId,
  bool? returnUpgradeModels,
  bool? returnCraftModels,
}) => GetUpgradedGiftVariants(
  regularGiftId: regularGiftId ?? this.regularGiftId,
  returnUpgradeModels: returnUpgradeModels ?? this.returnUpgradeModels,
  returnCraftModels: returnCraftModels ?? this.returnCraftModels,
);