musicAlbum static method

String musicAlbum()

Implementation

static String musicAlbum() {
  const albums = [
    'Abbey Road',
    'Dark Side of the Moon',
    'Thriller',
    'Back in Black',
    'The Wall',
    'Nevermind',
    'Rumours',
    'Led Zeppelin IV',
    'Sgt. Pepper\'s',
    'Highway 61 Revisited',
  ];
  return albums[_random.nextInt(albums.length)];
}