sequence property

  1. @override
List<IndexedAudioSourcePlayer> sequence
override

The sequence of players for the indexed items nested in this player.

Implementation

@override
List<IndexedAudioSourcePlayer> get sequence =>
    List.generate(count, (i) => audioSourcePlayer)
        .expand((p) => p.sequence)
        .toList();