asIterable<T> method
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);
}