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