pushFront method
Push a sentence to the front (no sort)
Implementation
void pushFront(BaseNarrativeModel item) {
_queue.addFirst(item);
_isSorted = false;
}
Push a sentence to the front (no sort)
void pushFront(BaseNarrativeModel item) {
_queue.addFirst(item);
_isSorted = false;
}