copyWith method
StorePaymentPurposePremiumGiveaway
copyWith({
- GiveawayParameters? parameters,
- String? currency,
- int? amount,
Implementation
StorePaymentPurposePremiumGiveaway copyWith({
GiveawayParameters? parameters,
String? currency,
int? amount,
}) => StorePaymentPurposePremiumGiveaway(
parameters: parameters ?? this.parameters,
currency: currency ?? this.currency,
amount: amount ?? this.amount,
);