forEach method

  1. @override
void forEach(
  1. void action(
    1. K key,
    2. V value
    )
)
inherited

Implementation

@override
void forEach(void Function(A key, B value) action) {
  data.forEach(action);
}