acceptSimpleKeyVisitor<T> method

  1. @override
T acceptSimpleKeyVisitor<T>(
  1. TomlSimpleKeyVisitor<T> visitor
)
override

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

Implementation

@override
T acceptSimpleKeyVisitor<T>(TomlSimpleKeyVisitor<T> visitor) =>
    visitor.visitUnquotedKey(this);