sendNoteOn method

  1. @override
Future<void> sendNoteOn(
  1. int handle,
  2. int channel,
  3. int note,
  4. int velocity,
)
override

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,
  });
}