copyWith method
Implementation
StorePaymentPurposePremiumGiftCodes copyWith({
int? boostedChatId,
String? currency,
int? amount,
List<int>? userIds,
FormattedText? text,
}) => StorePaymentPurposePremiumGiftCodes(
boostedChatId: boostedChatId ?? this.boostedChatId,
currency: currency ?? this.currency,
amount: amount ?? this.amount,
userIds: userIds ?? this.userIds,
text: text ?? this.text,
);