queryNode method

Leaf? queryNode(
  1. int offset
)

Given offset, find its leaf node in document

Implementation

Leaf? queryNode(int offset) {
  return document.querySegmentLeafNode(offset).leaf;
}