Transposition constructor

const Transposition({
  1. int diatonic = 0,
  2. int chromatic = 0,
  3. int octaveChange = 0,
  4. bool doubled = false,
  5. bool doubledAbove = false,
})

Implementation

const Transposition({
  this.diatonic = 0,
  this.chromatic = 0,
  this.octaveChange = 0,
  this.doubled = false,
  this.doubledAbove = false,
});