pushFront method

void pushFront(
  1. BaseNarrativeModel item
)

Push a sentence to the front (no sort)

Implementation

void pushFront(BaseNarrativeModel item) {
  _queue.addFirst(item);
  _isSorted = false;
}