controlChange method
Sends a MIDI Control Change (CC) message to the specified channel on a soundfont.
controller is the CC number (0-127), value is the CC value (0-127).
Implementation
Future<void> controlChange(int sfId, int channel, int controller, int value) {
throw UnimplementedError('controlChange() has not been implemented.');
}