setBlurPower method

Future<void> setBlurPower(
  1. double blurPower
)

Adjusts blur strength for background blur mode.

  • blurPower: Blur strength (0.0 - 1.0)

Implementation

Future<void> setBlurPower(double blurPower) {
  return rtc.VideoEffectsSdk.setBlurPower(mediaStreamTrack, blurPower);
}