JsonString.parse constructor

JsonString.parse(
  1. String input
)

Parses and casts the given input as a string.

If parsing fails a FormatException is thrown.

Implementation

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