pauseAudioEffect method

Future<int> pauseAudioEffect(
  1. int effectId
)

Implementation

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