enableMandibleSlimming method Null safety
- bool enable
Enable mandible slimming.
bool enable - Whether to enable mandible slimming. Passing true
enables it, and passing false
disables it.
Precautions: Use after initializing ZegoEffects.
Applicable version: >= 2.1.0
Implementation
Future<void> enableMandibleSlimming(bool enable) async {
return await _channel.invokeMethod('enableMandibleSlimming', {'enable': enable});
}