Measure constructor
Measure({})
Implementation
Measure(
{required this.notes,
this.repeatStart = false,
this.repeatEnd = false,
this.chord}) {
assert(notes.every((note) => note.timing != Timing.unspecified));
}