stopAudioEffect method

Future<int> stopAudioEffect(
  1. int effectId
)

Implementation

Future<int> stopAudioEffect(int effectId) async {
  int code = await _channel.invokeMethod('stopAudioEffect', effectId) ?? -1;
  return code;
}