dropWhile method

List dropWhile(
  1. Function predicate
)

dropRightWhileCreates a slice of array excluding elements dropped from the beginning. @param array the list to compare against @param predicate the function to determine equality

Implementation

List dropWhile(Function predicate) => array.dropWhile(this, predicate);