Pitch constructor

const Pitch({
  1. required String step,
  2. required int octave,
  3. double alter = 0.0,
  4. AccidentalType? accidentalType,
  5. String? customAccidentalGlyph,
})

Implementation

const Pitch({
  required this.step,
  required this.octave,
  this.alter = 0.0,
  this.accidentalType,
  this.customAccidentalGlyph,
});