MessageSequence.fromRange constructor

MessageSequence.fromRange(
  1. int start,
  2. int end, {
  3. bool isUidSequence = false,
})

Convenience method for getting the sequence for a single range from start to end inclusive.

Implementation

MessageSequence.fromRange(int start, int end, {this.isUidSequence = false}) {
  addRange(start, end);
}