TempoMark constructor

TempoMark({
  1. required DurationType beatUnit,
  2. int? bpm,
  3. String? text,
  4. bool showMetronome = true,
})

Implementation

TempoMark({
  required this.beatUnit,
  this.bpm,
  this.text,
  this.showMetronome = true,
});