Sorts a list of maps by the given key in descending order.
Example:
final descendingSortedMaps = list.sortDescBy("price");
List<Map<T, T>> sortDescBy(String key) => sortBy(key, isDesc: true);