parse static method

TomlLocalDate parse(
  1. String input
)
override

Parses the given string as a TOML local date.

Implementation

static TomlLocalDate parse(String input) =>
    parser.end().parse(input).valueOrTomlException;