adjustAudioEffectVolume method

Future<int> adjustAudioEffectVolume(
  1. int effectId,
  2. int volume
)

Implementation

Future<int> adjustAudioEffectVolume(int effectId, int volume) async {
  Map<String, dynamic> arguments = {
    'id': effectId,
    'volume': volume,
  };
  int code = await _channel.invokeMethod('adjustAudioEffectVolume', arguments) ?? -1;
  return code;
}