adjustAudioEffectVolume method
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;
}