JsonArray.parseUtf8 constructor

JsonArray.parseUtf8(
  1. List<int> bytes
)

Parses and returns the given UTF8-encoded bytes as a array.

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

Implementation

factory JsonArray.parseUtf8(List<int> bytes) => JsonValue.parseUtf8(bytes);