some method

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

Implementation

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