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