fromJsonString static method

List<DecoderResult> fromJsonString(
  1. String jsonString
)

Implementation

static List<DecoderResult> fromJsonString(String jsonString) {
  List<dynamic> resultList = json.decode(jsonString);
  return resultList
      .map((resultMap) => DecoderResult.fromJson(resultMap))
      .toList();
}