MidiEvent.noteOn constructor
const
MidiEvent.noteOn({})
Implementation
const MidiEvent.noteOn({
required int tick,
required int channel,
required int note,
required int velocity,
}) : this._(
tick: tick,
type: MidiEventType.noteOn,
channel: channel,
note: note,
velocity: velocity,
);