pushFrontAll method

void pushFrontAll(
  1. Iterable<BaseNarrativeModel> items
)

Push many to the front (no sort)

Implementation

void pushFrontAll(Iterable<BaseNarrativeModel> items) {
  for (final item in items.toList().reversed) {
    _queue.addFirst(item);
  }
  _isSorted = false;
}