drop method

List drop(
  1. int count
)

drop Creates a slice of array with n elements dropped from the beginning. @param array the list to compare against @param n the number of elements to drop @returns the values in the list that are not in the other

Implementation

List drop(int count) => array.drop(this, count);