enableAcneRemoving method Null safety

Future<void> enableAcneRemoving(
  1. bool enable
)

Enable acne removal.

bool enable - Whether to enable acne removal. Passing true enables it, and passing false disables it.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

Future<void> enableAcneRemoving(bool enable) async {
  return await _channel.invokeMethod('enableAcneRemoving', {'enable': enable});
}