position method

int position({
  1. int? offset,
})

Implementation

int position({int? offset}) {
  if (offset != null) _readOffset = offset;
  return tell();
}