isNoteOff property

bool isNoteOff

Returns true if this note is not tied to a following note

Implementation

bool get isNoteOff => ties.isEmpty || ties.last.type != StartStop.start;