parser property

Parser<TomlDateTime> parser
final

Parser for a TOML date, time or date-time value.

Implementation

static final Parser<TomlDateTime> parser = ChoiceParser([
  TomlOffsetDateTime.parser,
  TomlLocalDateTime.parser,
  TomlLocalDate.parser,
  TomlLocalTime.parser,
], failureJoiner: selectFarthestJoined);