enableFaceLifting method Null safety

Future<void> enableFaceLifting(
  1. bool enable
)

Enable face lifting.

bool enable - Whether to enable face lifting. Passing true enables it, and passing false disables it.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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