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