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