Cast the jsonBody as a List of Type by applying the transformation function to each underlying item.
List<T> asList<T>(T f(Map<String, dynamic> e)) => asIterable<T>(f).toList();