fromRange static method
Convenience method for getting the sequence for a single range from start
to end
inclusive.
Implementation
static MessageSequence fromRange(int start, int end,
{bool isUidSequence = false}) {
final sequence = MessageSequence(isUidSequence: isUidSequence);
sequence.addRange(start, end);
return sequence;
}