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