MidiEvent.aftertouchChannel constructor

MidiEvent.aftertouchChannel({
  1. required int channel,
  2. required int pressure,
})

Implementation

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