parse static method

TomlValue parse(
  1. String input
)

Parses the given TOML value.

Throws a ParserException if there is a syntax error.

Implementation

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