followedBy method
Refer to Iterable.followedBy;
Implementation
Future<Iterable<E>> followedBy(Iterable<E> other) async {
return (await this).followedBy(other);
}
Refer to Iterable.followedBy;
Future<Iterable<E>> followedBy(Iterable<E> other) async {
return (await this).followedBy(other);
}