nextSibling property

TreeSitterNode? get nextSibling

Implementation

TreeSitterNode? get nextSibling {
  final context = _contexts[this];
  return context?.parent?.child(context.childIndex + 1);
}