setEyelinerParam method Null safety

Future<void> setEyelinerParam(
  1. ZegoEffectsEyelinerParam param
)

Set the parameters for the eyeliner effect.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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