setChromaKeyForegroundPosition method Null safety

Future<void> setChromaKeyForegroundPosition(
  1. double x,
  2. double y,
  3. double width,
  4. double height
)

设置抠像前景的位置和大小。

double x - 前景的 x 坐标。 double y - 前景的 y 坐标。 double width - 前景的宽度。 double height - 前景的高度。

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

适用版本: >= 2.1.0

Implementation

Future<void> setChromaKeyForegroundPosition(double x, double y, double width, double height) async {
  return await _channel.invokeMethod('setChromaKeyForegroundPosition', {'x': x, 'y': y, 'width': width, 'height': height});
}