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