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