parse static method

ParsedIntent parse(
  1. String input
)

Parse the structure of a user command.

Returns a ParsedIntent struct containing raw fields. Use this if you need low-level access to the parsed components.

Implementation

static raw.ParsedIntent parse(String input) => raw.parseIntent(input: input);