forEach method

void forEach(
  1. void action(
    1. T e
    )
)

Implementation

void forEach(void Function(T e) action) {
  value.forEach(action);
}