pushBackAll method

void pushBackAll(
  1. Iterable<BaseNarrativeModel> items
)

Push many to the end (no sort)

Implementation

void pushBackAll(Iterable<BaseNarrativeModel> items) {
  _queue.addAll(items);
  _isSorted = false;
}