notes property

List<Note> get notes

Get all notes in this voice

Implementation

List<Note> get notes {
  return elements.whereType<Note>().toList();
}