copyWith method
Implementation
PremiumGiveawayPaymentOption copyWith({
String? currency,
int? amount,
int? winnerCount,
int? monthCount,
String? storeProductId,
int? storeProductQuantity,
}) => PremiumGiveawayPaymentOption(
currency: currency ?? this.currency,
amount: amount ?? this.amount,
winnerCount: winnerCount ?? this.winnerCount,
monthCount: monthCount ?? this.monthCount,
storeProductId: storeProductId ?? this.storeProductId,
storeProductQuantity: storeProductQuantity ?? this.storeProductQuantity,
);