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