Yes, let's check the following sample code. List<int> values = [1, 2, 3, 4, 5, 6, 7, 8, 9]; print(values.skip(5).toList()); //[6, 7, 8, ...
確定! 回上一頁