currentByteOffset property

int? get currentByteOffset

Native reusable_node_byte_offset: the coordinate before the current subtree's edited padding.

Implementation

int? get currentByteOffset {
  if (_current == null || _stack.isEmpty) return null;
  return _stack.last.entryByte;
}