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