enableRosy method Null safety

Future<void> enableRosy(
  1. bool enable
)

Enable rosy effect.

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

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

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