List<String> obrasDe(String nombreAutor) { final nombre = nombreAutor.toLowerCase(); return escritores .where((e) => e.nombre.toLowerCase().contains(nombre)) .map((e) => e.obra) .toList(); }