mood method

String mood()

Implementation

String mood() {
  switch (this) {
    case 1:
      return 'Angry';
    case 2:
      return 'Dark';
    case 3:
      return 'Dreamy';
    case 4:
      return 'Epic';
    case 5:
      return 'Euphoric';
    case 6:
      return 'Energetic';
    case 7:
      return 'Fear';
    case 8:
      return 'Funny';
    case 9:
      return 'Glamorous';
    case 10:
      return 'Gloomy';
    case 11:
      return 'Happy';
    case 12:
      return 'Hopeful';
    case 13:
      return 'LaidBack';
    case 14:
      return 'Mysterious';
    case 15:
      return 'Peaceful';
    case 16:
      return 'Quirky';
    case 17:
      return 'Relaxing';
    case 18:
      return 'Restless';
    case 19:
      return 'Romantic';
    case 20:
      return 'Sad';
    case 21:
      return 'Scary';
    case 22:
      return 'Sexy';
    case 23:
      return 'Suspense';
    case 24:
      return 'Weird';
    default:
      return '';
  }
}