asIterable<T> method

Iterable<T> asIterable<T>(
  1. T f(
    1. Map<String, dynamic> e
    )
)

Cast the jsonBody as a lazy Iterable of Type by applying the transformation function to each underlying item.

Implementation

Iterable<T> asIterable<T>(T f(Map<String, dynamic> e)) {
  return Iterable.castFrom<dynamic, Map<String, dynamic>>(jsonBody).map<T>(f);
}