Returns true if this node contains character at specified offset in the document.
true
offset
bool containsOffset(int offset) { final o = documentOffset; return o <= offset && offset < o + length; }