parse method

JsonPath parse(
  1. String expression
)

Parses the JSONPath from s string expression. Returns an instance of JsonPath or throws a FormatException.

Implementation

JsonPath parse(String expression) =>
    JsonPathInternal(expression, _parser.parse(expression).value.call);