listFromJson static method
Converts a list of JSON objects to a list of Pdf417ErrorLevel instances.
@param json The list of JSON objects to convert. @return A list of Pdf417ErrorLevel instances.
Implementation
static List<Pdf417ErrorLevel> listFromJson(List<dynamic> json) {
return json.map((value) => Pdf417ErrorLevel.fromJson(value)).toList();
}