next method

V? next(
  1. int index
)

Returns an element following the index, if out of bounds returns null.

Implementation

V? next(int index) => fn.next(this, index);