forEach method

void forEach(
  1. void f(
    1. T,
    2. S
    )
)

Loop over elements from cache

Implementation

void forEach(void Function(T, S) f) => _cache.forEach(f);