insert method
Inserts the given id
to this paged sequence
Implementation
void insert(int id) {
_addedIds++;
sequence.add(id);
_messageSequenceIds.insert(0, id);
}
Inserts the given id
to this paged sequence
void insert(int id) {
_addedIds++;
sequence.add(id);
_messageSequenceIds.insert(0, id);
}