movementNames property

List<String> movementNames

List of unique Movement names in the Sessions.

Implementation

List<String> get movementNames => sessions
    .expand((s) => s.movements.map((m) => m.name.toLowerCase()))
    .toSet()
    .toList();