I see in the API docs there is a sort() method on List, but I\'m not clear what it needs for a parameter. The current need is for a very simple st
sort()
List
How I have solved this problem.
List _dataSavingListProducts = []; List _dataSavingListFavoritesProducts = []; void _orderDataSavingLists() { _dataSavingListProducts.toList().reversed; _dataSavingListFavoritesProducts.toList().reversed; }