drop function

List drop(
  1. List list, {
  2. int n = 1,
})

Implementation

List drop(List list, {int n = 1}) => list.sublist(n);