copyWith method
Implementation
StarTransactionTypeBotInvoicePurchase copyWith({
int? userId,
ProductInfo? productInfo,
}) => StarTransactionTypeBotInvoicePurchase(
userId: userId ?? this.userId,
productInfo: productInfo ?? this.productInfo,
);