forEach method

void forEach(
  1. void action(
    1. E element
    )
)

Implementation

void forEach(void Function(E element) action) => value.forEach(action);