preparePolyAftertouch method

Uint8List preparePolyAftertouch(
  1. int note,
  2. int pressure
)

Prepares a Polyphonic Aftertouch message (0xA0) for this channel.

Implementation

Uint8List preparePolyAftertouch(int note, int pressure) {
  return Uint8List.fromList([0xA0 | channel, note, pressure]);
}