visit method

void visit(
  1. XmlEvent event
)

Helper to dispatch the provided event onto this visitor.

Implementation

void visit(XmlEvent event) => event.accept(this);