isSongStructure property

bool isSongStructure

Section of a song structure.

More informations: https://en.wikipedia.org/wiki/Song_structure

Implementation

bool get isSongStructure => switch (this) {
      KaraSection.intro ||
      KaraSection.verse ||
      KaraSection.preChorus ||
      KaraSection.chorus ||
      KaraSection.postChorus ||
      KaraSection.bridge ||
      KaraSection.postBridge ||
      KaraSection.outro =>
        true,
      _ => false,
    };