MidiEvent.noteOff constructor

MidiEvent.noteOff({
  1. required int channel,
  2. required int note,
  3. required int velocity,
})

Implementation

factory MidiEvent.noteOff({
  required int channel,
  required int note,
  required int velocity,
}) => MidiEvent(
  type: MidiEventType.noteOff,
  channel: channel,
  note: note,
  velocity: velocity,
);