Timing constructor

Timing(
  1. NoteType type,
  2. int nth
)

Implementation

Timing(this.type, this.nth) {
  assert(nth > 0);
  assert(nth <= type.notesPerMeasure());
}