acceptValueVisitor<T> method

  1. @override
T acceptValueVisitor<T>(
  1. TomlValueVisitor<T> visitor
)
override

Invokes the correct visit* method for this value of the given visitor.

Implementation

@override
T acceptValueVisitor<T>(TomlValueVisitor<T> visitor) =>
    visitor.visitInlineTable(this);