forEachIndexed method

void forEachIndexed(
  1. dynamic lopper(
    1. int index,
    2. T model
    )
)

Implementation

void forEachIndexed(
  Function(int index, T model) lopper,
) {
  asMap().forEach(lopper);
}