send method

  1. @override
void send()
override

Send the message bytes to all connected devices

Implementation

@override
void send() {
  data = Uint8List(3);
  data[0] = 0x80 + channel;
  data[1] = note;
  data[2] = velocity;
  super.send();
}