Ornament constructor

Ornament({
  1. required OrnamentType type,
  2. bool above = true,
  3. String? text,
  4. Pitch? alternatePitch,
})

Implementation

Ornament({
  required this.type,
  this.above = true,
  this.text,
  this.alternatePitch,
});