dropFirst method

List<T> dropFirst([
  1. int first = 1
])

Implementation

List<T> dropFirst([int first = 1]) => sublist(0, first);