setNoseNarrowingParam method Null safety
Set the parameters for nose narrowing.
ZegoEffectsNoseNarrowingParam param - The parameter configuration for nose narrowing, including intensity information. For specific parameter definitions, refer to the ZegoEffectsNoseNarrowingParam
class.
Precautions: Use after initializing ZegoEffects.
Applicable version: >= 2.1.0
Implementation
Future<void> setNoseNarrowingParam(ZegoEffectsNoseNarrowingParam param) async {
return await _channel.invokeMethod('setNoseNarrowingParam', {'intensity': param.intensity});
}