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