playNote method

  1. @override
Future<void> playNote(
  1. int channel,
  2. int key,
  3. int velocity,
  4. int sfId,
)
override

Implementation

@override
Future<void> playNote(int channel, int key, int velocity, int sfId) async {
  await _channel.invokeMethod(
      'playNote', {'channel': channel, 'key': key, 'velocity': velocity, 'sfId': sfId});
}