lowestNote property

Note get lowestNote

Implementation

Note get lowestNote {
  return notes.reduce(
    (a, b) => a.pitch.midiNumber < b.pitch.midiNumber ? a : b,
  );
}