setSmoothParam method Null safety

Future<void> setSmoothParam(
  1. ZegoEffectsSmoothParam param
)

设置磨皮功能的参数。

ZegoEffectsSmoothParam param - 磨皮功能的参数配置,包含强度等信息。具体参数定义请参考 ZegoEffectsSmoothParam 类。

注意事项: 使用时机在初始化ZegoEffects之后

适用版本: >= 2.1.0

Implementation

Future<void> setSmoothParam(ZegoEffectsSmoothParam param) async {
  return await _channel.invokeMethod('setSmoothParam', {'intensity': param.intensity});
}