copyWith method
Implementation
PremiumGiftPaymentOption copyWith({
String? currency,
int? amount,
int? starCount,
int? discountPercentage,
int? monthCount,
String? storeProductId,
Sticker? sticker,
}) => PremiumGiftPaymentOption(
currency: currency ?? this.currency,
amount: amount ?? this.amount,
starCount: starCount ?? this.starCount,
discountPercentage: discountPercentage ?? this.discountPercentage,
monthCount: monthCount ?? this.monthCount,
storeProductId: storeProductId ?? this.storeProductId,
sticker: sticker ?? this.sticker,
);