sendData method

void sendData (Uint8List data)

Sends data to the currently connected device.

Data is an UInt8List of individual MIDI command bytes.

Implementation

void sendData(Uint8List data) {
  _platform.sendData(data);
}