parse static method

TomlLocalDateTime parse(
  1. String input
)
override

Parses the given string as a TOML local date-time.

Implementation

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