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