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