forEach method

void forEach(
  1. void fn(
    1. K,
    2. V?,
    3. JsMap<K, V>
    )
)

Implementation

void forEach(void Function(K, V?, JsMap<K, V>) fn) {
  jsu.callMethod(this, 'forEach', [allowInterop(fn)]);
}