reduce method
Refer to Iterable.reduce;
Implementation
Future<E> reduce(E combine(E v, E e)) async {
return (await this).reduce(combine);
}
Refer to Iterable.reduce;
Future<E> reduce(E combine(E v, E e)) async {
return (await this).reduce(combine);
}