fold<T> method
Refer to Iterable.fold;
Implementation
Future<T> fold<T>(T i, T Function(T, E) combine) async {
return (await this).fold<T>(i, combine);
}
Refer to Iterable.fold;
Future<T> fold<T>(T i, T Function(T, E) combine) async {
return (await this).fold<T>(i, combine);
}