followedBy method

Future<Iterable<E>> followedBy(
  1. Iterable<E> other
)

Implementation

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