effectiveSequence property

List<IndexedAudioSource> effectiveSequence

The effective sequence. This is equivalent to sequence. If shuffleModeEnabled is true, this is modulated by shuffleIndices.

Implementation

List<IndexedAudioSource> get effectiveSequence => shuffleModeEnabled
    ? shuffleIndices.map((i) => sequence[i]).toList()
    : sequence;