setPortraitSegmentationBackgroundPath method Null safety

Future<void> setPortraitSegmentationBackgroundPath(
  1. String imgPath,
  2. ZegoEffectsScaleMode mode
)

设置人像分割的自定义背景图片路径。

String imgPath - 本地图片资源路径。 ZegoEffectsScaleMode mode - 图片缩放模式。

注意事项: 使用时机在初始化ZegoEffects之后

适用版本: >= 2.1.0

Implementation

Future<void> setPortraitSegmentationBackgroundPath(String imgPath, ZegoEffectsScaleMode mode) async {
  return await _channel.invokeMethod('setPortraitSegmentationBackgroundPath', {'path': imgPath, 'mode': mode.index});
}