position property Null safety

int position
override

The current read position relative to the start of the buffer.

Implementation

@override
int get position => offset - start;
void position=(int v)
override

Implementation

@override
set position(int v) { offset = start + v; }