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