Chord constructor

Chord({
  1. required List<Note> notes,
  2. required Duration duration,
  3. List<ArticulationType> articulations = const [],
  4. TieType? tie,
  5. SlurType? slur,
  6. BeamType? beam,
  7. List<Ornament> ornaments = const [],
  8. Dynamic? dynamic,
  9. int? voice,
})

Implementation

Chord({
  required this.notes,
  required this.duration,
  this.articulations = const [],
  this.tie,
  this.slur,
  this.beam,
  this.ornaments = const [],
  this.dynamic,
  this.voice,
});