position property Null safety
override
The current read position relative to the start of the buffer.
Implementation
@override
int get position => offset - start;
override
Implementation
@override
set position(int v) { offset = start + v; }