parseList<T> function

List<T> parseList<T>(
  1. String source,
  2. JsonParser<T> parser
)

Parses a list from the given JSON string using the given parser.

Implementation

List<T> parseList<T>(String source, JsonParser<T> parser) =>
    parseDecodedList(_decodeJson(source), parser);