forEach method

void forEach(
  1. dynamic action(
    1. Album element
    )
)

Implementation

void forEach(Function(Album element) action) => albums.forEach(action);