Neume constructor

Neume({
  1. required NeumeType type,
  2. required List<NeumeComponent> components,
  3. String? syllable,
  4. NeumeNotationStyle notationStyle = NeumeNotationStyle.square,
})

Implementation

Neume({
  required this.type,
  required this.components,
  this.syllable,
  this.notationStyle = NeumeNotationStyle.square,
});