enableNoseNarrowing method Null safety

Future<void> enableNoseNarrowing(
  1. bool enable
)

Enable nose narrowing.

bool enable - Whether to enable nose narrowing. Passing true enables it, and passing false disables it.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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