withinBufferedRange property
bool
get
withinBufferedRange
Implementation
bool get withinBufferedRange {
for (final range in buffered){
if( position >= range.start && position <= range.end) return true;
}
return false;
}