JsonObject.parse constructor

JsonObject.parse(
  1. String input
)

Parses and casts the given input as an object.

If parsing fails a FormatException is thrown.

Implementation

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