Pitch constructor
const
Pitch({
- required String step,
- required int octave,
- double alter = 0.0,
- AccidentalType? accidentalType,
- String? customAccidentalGlyph,
Implementation
const Pitch({
required this.step,
required this.octave,
this.alter = 0.0,
this.accidentalType,
this.customAccidentalGlyph,
});