copyWith method
Implementation
StarTransactionTypeChannelPaidMediaPurchase copyWith({
int? chatId,
int? messageId,
List<PaidMedia>? media,
}) => StarTransactionTypeChannelPaidMediaPurchase(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
media: media ?? this.media,
);