controlChange method

Future<void> controlChange(
  1. int sfId,
  2. int channel,
  3. int controller,
  4. int value,
)

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.');
}