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