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