setLongChinParam method Null safety

Future<void> setLongChinParam(
  1. ZegoEffectsLongChinParam param
)

Set the parameters for the long chin effect.

ZegoEffectsLongChinParam param - The parameter configuration for the long chin effect, including intensity information. For specific parameter definitions, refer to the ZegoEffectsLongChinParam class.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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