setEyeshadowParam method Null safety

Future<void> setEyeshadowParam(
  1. ZegoEffectsEyeshadowParam param
)

Set the parameters for the eyeshadow effect.

ZegoEffectsEyeshadowParam param - The parameter configuration for the eyeshadow effect, including intensity information. For specific parameter definitions, refer to the ZegoEffectsEyeshadowParam class.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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