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