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