stopNote method

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

Implementation

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