startsWith method

bool startsWith(
  1. List<T> list, [
  2. int offset = 0
])

Implementation

bool startsWith(List<T> list, [int offset = 0]) => includes(list, offset: offset, breakOffset: offset);