我需要翻转列表才能从最后一项读取该列表到第一项 例如:列表[a,b,c,d] 我想以[d,c,b,a]获得该列表; 有人知道该怎么做吗?
答案 0 :(得分:5)
您可以使用reversed
。
一个例子,
List<String> list = ["a", "b", "c"];
list = list.reversed.toList();
print(list); // Result [c, b, a]
reversed
的文件
/**
* Returns an [Iterable] of the objects in this list in reverse order.
*/
Iterable<E> get reversed;