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