OctaveMark constructor

OctaveMark({
  1. required OctaveType type,
  2. required int startMeasure,
  3. required int endMeasure,
  4. int? startNote,
  5. int? endNote,
  6. double length = 100.0,
  7. bool showBracket = true,
})

Implementation

OctaveMark({
  required this.type,
  required this.startMeasure,
  required this.endMeasure,
  this.startNote,
  this.endNote,
  this.length = 100.0,
  this.showBracket = true,
});