menu
pancake_sdk package
documentation
v2/pair.dart
ExtendedIterable<E>
forEachIndexed method
forEachIndexed method
dark_mode
light_mode
forEachIndexed
method
void
forEachIndexed
(
void
f
(
E
e
,
int
i
)
)
Implementation
void forEachIndexed(void Function(E e, int i) f) { var i = 0; forEach((e) => f(e, i++)); }
pancake_sdk package
documentation
v2/pair
ExtendedIterable<E>
forEachIndexed method
ExtendedIterable extension on
Iterable
<
E
>