setBlusherParam method Null safety

Future<void> setBlusherParam(
  1. ZegoEffectsBlusherParam param
)

Set the parameters for the blush effect.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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