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