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