parse static method

TomlLocalTime parse(
  1. String input
)
override

Parses the given string as a TOML local time.

Implementation

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