enableBigEyes method Null safety

Future<void> enableBigEyes(
  1. bool enable
)

Enable big eyes effect.

bool enable - Whether to enable the big eyes effect. Passing true enables it, and passing false disables it.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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