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