getListaVoti method

List<double> getListaVoti()

Restituisce una lista con tutti i voti assegnati ai libri. @return Lista di voti dei libri recensiti.

Implementation

List<double> getListaVoti() {
  return libreria
      .getLibri()
      .where((l) => l.voto != null)
      .map((l) => l.voto!)
      .toList();
}