asIterable<T> method

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

Cast the jsonBody as a lazy Iterable of Type, as a result of a future.

Implementation

Future<Iterable<T>> asIterable<T>(T f(Map<String, dynamic> e)) async {
  return (await this).asIterable(f);
}