prepareNoteOff method

Uint8List prepareNoteOff(
  1. int note,
  2. int velocity
)

Prepares a Note Off message (0x80) for this channel.

Implementation

Uint8List prepareNoteOff(int note, int velocity) {
  return Uint8List.fromList([0x80 | channel, note, velocity]);
}