forEach method

void forEach(
  1. void fn(
    1. E element,
    2. int index,
    3. JsArray<E> array
    )
)

Implementation

void forEach(void Function(E element, int index, JsArray<E> array) fn) =>
    jsu.callMethod(this, 'forEach', [allowInterop(fn)]);