remove method

void remove(
  1. int id
)

Removes the given id from this paged sequence

Implementation

void remove(int id) {
  _messageSequenceIds.remove(id);
  sequence.remove(id);
}