forEach abstract method

void forEach(
  1. void action(
    1. Json json
    )
)

Invokes action on each json of this json array in iteration order.

Implementation

void forEach(void Function(Json json) action);