I have this inside one of the sorting options ``` ...
# getting-started
o
I have this inside one of the sorting options
Copy code
searchResults.filterNotTo(mutableListOf()) { it.negotiated_price == null }
                    searchResults.sortByDescending {
                        100 - ((it.negotiated_price!!.toInt() / it.price) * 100)
                    }