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