enableBeautification method

Future<void> enableBeautification(
  1. bool enable
)

Enables/disables face beautification effects.

Improves the appearance of the human face.

Implementation

Future<void> enableBeautification(bool enable) {
  return rtc.VideoEffectsSdk.enableBeautification(mediaStreamTrack, enable);
}