JsonAny.parse constructor

JsonAny.parse(
  1. String input
)

Parses and returns the given input as a JSON value.

If parsing fails, a FormatException is thrown.

Implementation

factory JsonAny.parse(String input) => JsonValue.parse(input);