acceptDateTimeVisitor<T> method

  1. @override
T acceptDateTimeVisitor<T>(
  1. TomlDateTimeVisitor<T> visitor
)
override

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

Implementation

@override
T acceptDateTimeVisitor<T>(TomlDateTimeVisitor<T> visitor) =>
    visitor.visitOffsetDateTime(this);