enableEyesBrightening method Null safety

Future<void> enableEyesBrightening(
  1. bool enable
)

Enable eyes brightening.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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