accept<T> method

  1. @override
T accept<T>(
  1. XmlVisitor<T> visitor
)
inherited

Dispatch the invocation depending on this type to the visitor.

Implementation

@override
T accept<T>(XmlVisitor<T> visitor) => visitor.visitDocument(this);