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