sendNoteOff method
Implementation
@override
Future<void> sendNoteOff(
int handle,
int channel,
int note,
int velocity,
) async {
await methodChannel.invokeMethod<void>('sendNoteOff', {
'handle': handle,
'channel': channel,
'note': note,
'velocity': velocity,
});
}