Sequence constructor

Sequence({
  1. required double tempo,
  2. required double endBeat,
})

Implementation

Sequence({
  required this.tempo,
  required this.endBeat,
}) {
  id = globalState.registerSequence(this);
}