FaustNote constructor

FaustNote({
  1. required int instrumentId,
  2. required double pitch,
  3. required double beat,
  4. required double duration,
  5. required double velocity,
  6. required bool legato,
  7. int paramId = 0,
})

Implementation

FaustNote({
  required this.instrumentId,
  required this.pitch,
  required this.beat,
  required this.duration,
  required this.velocity,
  required this.legato,
  this.paramId = 0,
});