JsonArray.parse constructor

JsonArray.parse(
  1. String input
)

Parses and returns the given input as a array.

If parsing fails, or the result is not a array, a FormatException is thrown.

Implementation

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