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