followedBy method

T followedBy(
  1. Iterable<Album> other
)

Implementation

T followedBy(Iterable<Album> other) {
  return this as T..albums = albums.followedBy(other).toList();
}